diff --git a/ChangeLog b/ChangeLog index 2e46f50252..c22786f7c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ phpMyAdmin - ChangeLog + rfe #1609 Additional page locking + rfe #1620 Support MySQL 5.7 syntax for password change + rfe #1626 Display/edit index name ++ rfe #1625 Toggle autocomplete of table and column names 4.4.0.0 (not yet released) + rfe #1553 InnoDB presently supports one FULLTEXT index creation at a time diff --git a/db_sql_autocomplete.php b/db_sql_autocomplete.php index 4897f0058a..3be88c43ca 100644 --- a/db_sql_autocomplete.php +++ b/db_sql_autocomplete.php @@ -8,17 +8,19 @@ require_once 'libraries/common.inc.php'; -$db = isset($_POST['db']) ? $_POST['db'] : $GLOBALS['db']; -$sql_autocomplete = array(); - -if ($db) { - $tableNames = $GLOBALS['dbi']->getTables($db); - foreach ($tableNames as $tableName) { - $sql_autocomplete[$tableName] = $GLOBALS['dbi']->getColumns( - $db, $tableName - ); +if ($GLOBALS['cfg']['EnableAutocompleteForTablesAndColumns']) { + $db = isset($_POST['db']) ? $_POST['db'] : $GLOBALS['db']; + $sql_autocomplete = array(); + if ($db) { + $tableNames = $GLOBALS['dbi']->getTables($db); + foreach ($tableNames as $tableName) { + $sql_autocomplete[$tableName] = $GLOBALS['dbi']->getColumns( + $db, $tableName + ); + } } +} else { + $sql_autocomplete = true; } - $response = PMA_Response::getInstance(); $response->addJSON("tables", json_encode($sql_autocomplete)); diff --git a/doc/config.rst b/doc/config.rst index 237df7f45a..a9a1c483b3 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -2435,6 +2435,14 @@ Text fields Defines if the whole textarea of the query box will be selected on click. +.. config:option:: $cfg['EnableAutocompleteForTablesAndColumns'] + + :type: boolean + :default: true + + Whether to enable autocomplete for table and column names in any + SQL query box. + SQL query box settings ---------------------- diff --git a/js/functions.js b/js/functions.js index 602cf218b0..4fc77e2a79 100644 --- a/js/functions.js +++ b/js/functions.js @@ -4300,6 +4300,35 @@ $(document).on("change", "input.checkall_box", function () { .parents("tr").toggleClass("marked", is_checked); }); +/** + * Watches checkboxes in a sub form to set the sub checkall box accordingly + */ +var sub_checkboxes_changed = function () { + var $form = $(this).parent().parent(); + // total number of checkboxes in current sub form + var total_boxes = $form.find(checkboxes_sel).length; + // number of checkboxes checked in current sub form + var checked_boxes = $form.find(checkboxes_sel + ":checked").length; + var $checkall = $form.find("input.sub_checkall_box"); + if (total_boxes == checked_boxes) { + $checkall.prop({checked: true, indeterminate: false}); + } + else if (checked_boxes > 0) { + $checkall.prop({checked: true, indeterminate: true}); + } + else { + $checkall.prop({checked: false, indeterminate: false}); + } +}; +$(document).on("change", checkboxes_sel + ", input.checkall_box:checkbox:enabled", sub_checkboxes_changed); + +$(document).on("change", "input.sub_checkall_box", function () { + var is_checked = $(this).is(":checked"); + var $form = $(this).parent().parent(); + $form.find(checkboxes_sel).prop("checked", is_checked) + .parents("tr").toggleClass("marked", is_checked); +}); + /** * Toggles row colors of a set of 'tr' elements starting from a given element * diff --git a/libraries/central_columns.lib.php b/libraries/central_columns.lib.php index fdd9dee67b..85ea78ee03 100644 --- a/libraries/central_columns.lib.php +++ b/libraries/central_columns.lib.php @@ -1006,7 +1006,7 @@ function PMA_getHTMLforCentralColumnsEditTableRow($row, $odd_row, $row_num) '' . PMA_getHtmlForColumnNull($row_num, 6, 0, array('Null'=>$row['col_isNull'])) . ''; - $extra_val = $row['col_extra']; + $tableHtml .= '' . PMA_getHtmlForColumnExtra( diff --git a/libraries/config.default.php b/libraries/config.default.php index e2db43abde..7380fc53c2 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -2875,6 +2875,13 @@ $cfg['SQLQuery']['ShowAsPHP'] = true; */ $cfg['SQLQuery']['Refresh'] = true; +/** + * Enables autoComplete for table & column names in SQL queries + * + * default = 'true' + */ +$cfg['EnableAutocompleteForTablesAndColumns'] = true; + /******************************************************************************* * Web server upload/save/import directories diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php index 4b04dc5bc4..9d7115ed55 100644 --- a/libraries/config/messages.inc.php +++ b/libraries/config/messages.inc.php @@ -91,6 +91,8 @@ $strConfigDefaultTabServer_desc = __('Tab that is displayed when entering a serv $strConfigDefaultTabServer_name = __('Default server tab'); $strConfigDefaultTabTable_desc = __('Tab that is displayed when entering a table.'); $strConfigDefaultTabTable_name = __('Default table tab'); +$strConfigEnableAutocompleteForTablesAndColumns_desc = __('Autocomplete of the table and column names in the SQL queries.'); +$strConfigEnableAutocompleteForTablesAndColumns_name = __('Enable autocomplete for table and column names'); $strConfigHideStructureActions_desc = __('Whether the table structure actions should be hidden.'); $strConfigHideStructureActions_name = __('Hide table structure actions'); diff --git a/libraries/config/setup.forms.php b/libraries/config/setup.forms.php index 34b1180d38..ead911d790 100644 --- a/libraries/config/setup.forms.php +++ b/libraries/config/setup.forms.php @@ -159,7 +159,8 @@ $forms['Sql_queries']['Sql_queries'] = array( 'IgnoreMultiSubmitErrors', 'MaxCharactersInDisplayedSQL', 'RetainQueryBox', - 'CodemirrorEnable'); + 'CodemirrorEnable', + 'EnableAutocompleteForTablesAndColumns'); $forms['Sql_queries']['Sql_box'] = array('SQLQuery' => array( 'Edit', 'Explain', diff --git a/libraries/config/user_preferences.forms.php b/libraries/config/user_preferences.forms.php index f6b63a92fb..56b5118015 100644 --- a/libraries/config/user_preferences.forms.php +++ b/libraries/config/user_preferences.forms.php @@ -68,7 +68,8 @@ $forms['Sql_queries']['Sql_queries'] = array( 'IgnoreMultiSubmitErrors', 'MaxCharactersInDisplayedSQL', 'RetainQueryBox', - 'CodemirrorEnable'); + 'CodemirrorEnable', + 'EnableAutocompleteForTablesAndColumns'); $forms['Sql_queries']['Sql_box'] = array( 'SQLQuery/Edit', 'SQLQuery/Explain', diff --git a/libraries/server_privileges.lib.php b/libraries/server_privileges.lib.php index 8669c11013..843eb6412f 100644 --- a/libraries/server_privileges.lib.php +++ b/libraries/server_privileges.lib.php @@ -1403,7 +1403,13 @@ function PMA_getHtmlForGlobalPrivTableWithCheckboxes( $html_output = ''; foreach ($privTable as $i => $table) { $html_output .= '
' . "\n" - . '' . $privTable_names[$i] . '' . "\n"; + . '' . "\n" + . '' + . '' . "\n" + . '' . "\n"; foreach ($table as $priv) { $html_output .= '
' . "\n" . '\n" "Language-Team: Afrikaans \n" +"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: af\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -70,7 +70,7 @@ msgstr "Tabel kommentaar" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -94,7 +94,7 @@ msgstr "Kolom naam" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -150,8 +150,8 @@ msgid "Links to" msgstr "Skakels na" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -180,13 +180,13 @@ msgstr "Primere" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -209,13 +209,13 @@ msgstr "Nee" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -271,14 +271,14 @@ msgstr "" "kliek %shier%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabel" @@ -291,7 +291,7 @@ msgid "Rows" msgstr "Rye" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Grootte" @@ -385,9 +385,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -585,15 +585,15 @@ msgstr "Voeg geometrie by" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -634,11 +634,11 @@ msgstr "Voltooi invoegings" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Jy het heel moontlik te groot leer probeer oplaai. Verwys asb na %" -"sdocumentation%s vir 'n omseiling van die limiet." +"Jy het heel moontlik te groot leer probeer oplaai. Verwys asb na " +"%sdocumentation%s vir 'n omseiling van die limiet." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -714,7 +714,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Terug" @@ -738,7 +738,7 @@ msgid "General Settings" msgstr "Algemene verwantskap funksies" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Verander wagwoord" @@ -827,7 +827,7 @@ msgstr "Wys PHP informasie" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentasie" @@ -1083,7 +1083,7 @@ msgstr "Indeks" msgid "Edit Index" msgstr "Indeks" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format msgid "Add %s column(s) to index" msgstr "Voeg 'n nuwe veld by" @@ -1119,7 +1119,7 @@ msgstr "Jy moet ten minste een Kolom kies om te vertoon" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1156,12 +1156,12 @@ msgstr "Die gasheer naam is leeg!" msgid "The user name is empty!" msgstr "Die gebruiker naam ontbreek!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Die wagwoord is leeg!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" @@ -1370,7 +1370,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1667,7 +1667,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1903,7 +1903,7 @@ msgstr "SQL-stelling" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2172,7 +2172,7 @@ msgstr "Tabel kommentaar" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignoreer" @@ -2361,7 +2361,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Wys alles" @@ -2472,7 +2472,7 @@ msgstr "Indekse" msgid "Show hidden navigation tree items." msgstr "Wys ruitgebied" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Indexes" @@ -3030,16 +3030,16 @@ msgid "Delete" msgstr "Verwyder" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3172,7 +3172,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3617,8 +3617,8 @@ msgstr "Jou SQL-navraag is suksesvol uitgevoer." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3655,6 +3655,7 @@ msgstr "Met gekose:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3670,12 +3671,12 @@ msgstr "Verander" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3872,7 +3873,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3887,11 +3888,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3907,7 +3908,7 @@ msgstr "Struktuur" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3933,9 +3934,9 @@ msgstr "Voeg by" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Regte" @@ -3997,9 +3998,9 @@ msgid "Central columns" msgstr "Voeg By/Verwyder Veld Kolomme" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "databasisse" @@ -4122,7 +4123,7 @@ msgid "Recent" msgstr "Herstel" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy msgid "Favorite tables" msgstr "Skep 'n nuwe bladsy" @@ -4196,7 +4197,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4574,14 +4575,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4835,7 +4836,7 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL het gepraat: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Verduidelik SQL" @@ -4847,7 +4848,7 @@ msgstr "Ignoreer SQL Verduideliking" msgid "Without PHP Code" msgstr "Sonder PHP Kode" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Skep PHP Kode" @@ -4966,13 +4967,13 @@ msgstr "geen Beskrywing" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5394,7 +5395,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5749,78 +5750,90 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Omring tabel en veldname met backquotes" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Omring tabel en veldname met backquotes" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Stel tabel struktuur voor" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Stel tabel struktuur voor" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Tabel instandhouding" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Stellings" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Stoor as leer (file)" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "Karakterstel van die leer:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formaat" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5830,68 +5843,68 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Velde omring met" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Velde ontsnap (escaped) deur" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Lyne beeindig deur" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Lyne beeindig deur" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5902,628 +5915,628 @@ msgstr "" msgid "Dump table" msgstr "%s tabel(le)" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 #, fuzzy msgid "Relations" msgstr "Operasies" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "Export" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Omring tabel en veldname met backquotes" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Use delayed inserts" msgstr "Uitgebreide toevoegings" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Skep 'n nuwe tabel op databasis %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Uitgebreide toevoegings" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Export" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV data" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 -#, fuzzy -msgid "Customize default export options." -msgstr "Databasis statistieke" - -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 -#: setup/frames/menu.inc.php:22 -msgid "Features" -msgstr "" - #: libraries/config/messages.inc.php:226 #, fuzzy +msgid "Customize default export options." +msgstr "Databasis statistieke" + +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 +#: setup/frames/menu.inc.php:22 +msgid "Features" +msgstr "" + +#: libraries/config/messages.inc.php:228 +#, fuzzy msgid "General" msgstr "Voortgebring deur" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 #, fuzzy msgid "LaTeX" msgstr "Etiket" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "Databasis statistieke" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "Databasis statistieke" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "Databasis statistieke" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Indexes" msgid "Main panel" msgstr "Indekse" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Bladsy nommer:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentasie" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Documentation" msgid "Authentication settings." msgstr "Dokumentasie" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "SQL-stelling" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "SQL-stelling" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "SQL-stelling" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "databasisse" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "databasisse" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "Tabel" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "Vertoon PDF skema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "Voeg 'n nuwe veld by" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Add new field" msgid "Customize text input fields." msgstr "Voeg 'n nuwe veld by" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Vervang tabel data met leer (file)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Column names" msgid "Column names in first row" msgstr "Kolom name" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6531,1096 +6544,1096 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Wys ruitgebied" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy msgid "Show logo in navigation panel." msgstr "Tabel kommentaar" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy msgid "Enable navigation tree expansion" msgstr "Tabel kommentaar" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analiseer tabel" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Verander tabel sorteer volgens" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy msgid "Table navigation bar" msgstr "Tabel kommentaar" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Hernoem tabel na" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy msgid "Relational display" msgstr "Relasie uitsig" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "Databasis statistieke" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Documentation" msgid "Authentication method to use." msgstr "Dokumentasie" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Enige gasheer (host)" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Enige gasheer (host)" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "Geen databasisse" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "Moenie die wagwoord verander nie" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Databasis" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiseer tabel" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy msgid "Favorites table" msgstr "Skep 'n nuwe bladsy" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Herstel tabel" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Kolom Kommentaar word vertoon" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Stellings" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy msgid "Automatically create versions" msgstr "Bediener weergawe" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Gebruik Tabelle" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Wys PHP informasie" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy msgid "Show field types" msgstr "Wys tabelle" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Wys ruitgebied" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 msgid "" +"Defines whether SQL queries generated by phpMyAdmin should be displayed." +msgstr "" + +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" +msgstr "" + +#: libraries/config/messages.inc.php:764 +msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "SQL-stelling" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 #, fuzzy msgid "Show statistics" msgstr "Ry Statistiek" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Verstekwaarde (default)" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7628,52 +7641,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7681,84 +7694,84 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Gebruiker Naam:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Wagwoord" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Modifications have been saved" msgid "Enable Zero Configuration mode" @@ -7780,47 +7793,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "Dokumentasie" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 #, fuzzy msgid "Database export options" msgstr "Databasis statistieke" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV vir M$ Excel data" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -8066,20 +8079,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Geen Wagwoord" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Wagwoord:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8237,8 +8250,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8754,8 +8767,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9233,7 +9246,7 @@ msgstr "Teken uit" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentasie" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "Tabel kommentaar" @@ -9910,8 +9923,8 @@ msgstr "Welkom by %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10160,7 +10173,7 @@ msgstr "Kolom name" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11125,7 +11138,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11133,16 +11146,16 @@ msgstr "Gebruiker naam" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Gebruiker naam" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Wagwoord" @@ -11171,10 +11184,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Gasheer (host)" @@ -11186,47 +11199,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Enige gasheer (host)" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Enige gebruiker" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Add new field" msgid "Use text field:" msgstr "Voeg 'n nuwe veld by" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Tik weer" @@ -11994,7 +12007,7 @@ msgstr "Geen" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12061,14 +12074,14 @@ msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12079,7 +12092,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 #, fuzzy msgid "Global privileges" msgstr "Geen Regte" @@ -12089,7 +12102,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -12106,262 +12119,262 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 #, fuzzy msgid "Login Information" msgstr "Wys PHP informasie" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Moenie die wagwoord verander nie" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jy het die regte herroep vir %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Enige gebruiker" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy msgid "User has been added." msgstr "Veld %s is verwyder" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Geen gebruiker(s) gevind nie." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Enige" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Verander Regte" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Herroep" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Jy het die regte opgedateer vir %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Regte" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Verander Regte" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." @@ -14111,22 +14124,22 @@ msgstr "Indeks naam :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indeks tipe :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Gebruiker" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy msgid "Comment:" msgstr "Kommentaar" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15145,8 +15158,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15273,8 +15286,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/ar.po b/po/ar.po index 42c22c0421..cfb4cc7dc4 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-09 09:53+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Arabic \n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 2.3-dev\n" @@ -71,7 +71,7 @@ msgstr "تعليقات الجدول:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "عمود" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "مرتبط بـ" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "أساسي" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "لا" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -267,18 +267,18 @@ msgstr "تم نسخ قاعدة البيانات %1$s إلى %2$s" msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "الجدول" @@ -291,7 +291,7 @@ msgid "Rows" msgstr "صفوف" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "الحجم" @@ -385,9 +385,9 @@ msgstr "الحالة" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -588,15 +588,15 @@ msgstr "أضف هندسة" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -637,8 +637,8 @@ msgstr "إدخال كامل" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "من المحتمل أنك قد حاولت رفع ملف كبير الحجم. الرجاء مراجعة %sdocumentation%s " "لإيجاد حلّ بديل لتغيير هذا الحد." @@ -719,7 +719,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "رجوع" @@ -742,7 +742,7 @@ msgid "General Settings" msgstr "المزايا العامّة للرابط" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "تغيير كلمة السر" @@ -839,7 +839,7 @@ msgstr "بيانات الدخول" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "مستندات وثائقية" @@ -931,8 +931,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." #: index.php:549 msgid "" @@ -1108,7 +1108,7 @@ msgstr "إضافة فهرس" msgid "Edit Index" msgstr "حرّر الفهرس" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" @@ -1146,7 +1146,7 @@ msgstr "عليك اختيار عمود واحد على الأقل للعرض" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1183,12 +1183,12 @@ msgstr "إسم المستضيف فارغ!" msgid "The user name is empty!" msgstr "إسم المستخدم فارغ!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "كلمة المرور فارغة !" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "كلمتا المرور غير متشابهتان !" @@ -1389,7 +1389,7 @@ msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1664,7 +1664,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1884,7 +1884,7 @@ msgstr "إظهار صندوق الإستعلام" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2159,7 +2159,7 @@ msgstr "محتوى نقطة البيانات" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "تجاهل" @@ -2357,7 +2357,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "عرض الكل" @@ -2471,7 +2471,7 @@ msgstr "إخفاء الفهارس" msgid "Show hidden navigation tree items." msgstr "عرض الشعار في الإطار الأيسر" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main frame" @@ -2987,16 +2987,16 @@ msgid "Delete" msgstr "حذف" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3137,7 +3137,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3567,11 +3567,11 @@ msgstr "تم تنفيذ إستعلام SQL بنجاح" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"لدى هذا العرض على الأقل هذا العدد من الأسطر. الرجاء مراجعة الــ %" -"sdocumentation%s." +"لدى هذا العرض على الأقل هذا العدد من الأسطر. الرجاء مراجعة الــ " +"%sdocumentation%s." #: libraries/DisplayResults.class.php:4560 #, fuzzy, php-format @@ -3608,6 +3608,7 @@ msgstr "مع المحدد:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3623,12 +3624,12 @@ msgstr "تغيير" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3827,7 +3828,7 @@ msgid "" msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "خادم" @@ -3842,11 +3843,11 @@ msgstr "عرض" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3862,7 +3863,7 @@ msgstr "بناء" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3888,9 +3889,9 @@ msgstr "إدخال" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "الإمتيازات" @@ -3952,9 +3953,9 @@ msgid "Central columns" msgstr "عواميد منطقة النص" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "قاعدة بيانات" @@ -4086,7 +4087,7 @@ msgid "Recent" msgstr "إعادة تعيين" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4165,7 +4166,7 @@ msgstr "فرز" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4547,14 +4548,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4802,7 +4803,7 @@ msgstr "كبير: %s%s" msgid "MySQL said: " msgstr "MySQL قال: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "شرح SQL" @@ -4814,7 +4815,7 @@ msgstr "تخطي شرح SQL" msgid "Without PHP Code" msgstr "بدون كود PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "أنشئ كود PHP" @@ -4933,13 +4934,13 @@ msgstr "الوصف" msgid "Use this value" msgstr "إستعمل هذه القيمة" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5358,7 +5359,7 @@ msgid "Set value: %s" msgstr "تعيين القيمة: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "إستعادة القيمة الإفتراضية" @@ -5758,33 +5759,45 @@ msgstr "التبويب الذي يعرض عند الدخول إلى الجدول msgid "Default table tab" msgstr "تبويب الجدول الإفتراضي" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "محاصرة أسماء الجداول و العواميد ب \"`\"" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "محاصرة أسماء الجداول و العواميد ب \"`\"" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "إظهار الخوادم كقائمة بدلاً من القائمة المنسدلة." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "إظهار الخوادم كقائمة" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "تعطيل عمليات الصيانة , مثل تحسين وإصلاح جداول قاعدة البيانات." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "تعطيل صيانة الجداول المتعددة" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5794,39 +5807,39 @@ msgid "" "limit)." msgstr "ضع الوقت المحدد لعمل البرنامج ([kbd]0[/kbd]: لانهائي)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "وقت التنفيذ الأقصى" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "أوامر" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "حفظ كملف" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "مجموعة الأحرف للملف" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "صيغة" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "الضغط" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5836,70 +5849,70 @@ msgstr "الضغط" msgid "Put columns names in the first row" msgstr "ضع أسماء الحقول في السطر الأول" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" msgstr "حقل محاط بـ" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "حقل متجاهل بـ" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "استبدل NULL بـ" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "حذف CRLF من الأعمدة" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "خطوط تنتهي بـ" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "خطوط مفصولة بـ" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "إصدارة إكسل" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "إسم قالب قاعدة البيانات" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "إسم قالب الخادم" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "إسم قالب الجدول" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5908,334 +5921,334 @@ msgstr "إسم قالب الجدول" msgid "Dump table" msgstr "إفراغ الجدول" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "أضف عنواناً للجدول" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "عنوان الجدول" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "عنوان جدول تابع" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "نوع MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "العلاقات" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "نوع التصدير" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "حفظ في الخادم" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "خزن على الملفات الموجودة" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "تذكر إسم قالب الملف" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "محاصرة أسماء الجداول و العواميد ب \"`\"" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "وضع توافق SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "خيارات CREATE TABLE :" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "تواريخ الإنشاء/التحديث/التحقق" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "استخدم الإضافات المتأخرة" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "تعطيل التحقق من المفتاح الغريب" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export views as tables" msgstr "تصدير الأسطر من الجدول \"%s\"" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "أضف %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "إستخدم النظام الست عشري لـ BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "إستخدم الإضافات المتجاهلة" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "بناء الجملة لإستخدامه عند إدخال البيانات" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "أقصى طول للإستعلام المنشئ" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "نوع التصدير" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "تضمين التصدير في العملية" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "وقت التصدير (بالتوقيت العالمي)" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "فرض الإتصال الآمن عند إستخدام phpMyAdmin" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "فرض إتصال SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "قائمة منسدلة مرتبة بالمفتاح الغريب" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "سيتم إستخدام القائمة المنسدلة إذا وجد عدد أقل من العناصر" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "حد المفتاح الغريب" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "وضع الإستعراض" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "تخصيص وضع الإستعراض" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default options" msgid "Customize default options." msgstr "تخصيص الخيارات الإفتراضية" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "سي إس في" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "مطور" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "إعدادات لمطوري phpMyAdmin" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "وضع التعديل" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "تخصيص وضع التعديل" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "إفتراضيات التصدير" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "تخصيص خيارات التصدير الإفتراضي" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "مميزات" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "عام" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "تعيين بعض الخيارات شائعة الإستخدام" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "إفتراضيات الإستيراد" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "تخصيص خيارات الإستيراد الإفتراضية" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "إستيراد / تصدير" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "حدد عناوين الإستيراد والتصدير و خيارات الضغط" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "خيارات عرض قواعد البيانات" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "إطار التصفح" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "تخصيص مظهر إطار التصفح" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "خوادم" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "خيارات عرض الخوادم" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "خيارات عرض الجداول" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "الإطار الرئيسي" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "مايكروسوفت أوفيس" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "الإعدادات الرئيسية الأخرى" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "الإعدادات التي لاتناسب في أي مكان آخر" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "عناوين الصفحة" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "نافذة الاستعلام" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "تخصيص خيارات نافذة الإستعلام" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "الأمان" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6246,25 +6259,25 @@ msgid "" msgstr "" "فضلاً , تذكر أن phpMyAdmin هي واجة إستخدام فقط ولا يمكن أن تتجاوز حدود MySQL" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "الإعدادات الأساسية" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "المصادقة" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "خيارات المصادقة" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "إعداد الخادم" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6274,152 +6287,152 @@ msgid "" "what they are for." msgstr "إعداد متقدم للخادم , لاتغير أي من هذه القيم حتى تعلم وظيفتها" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "أدخل معلومات إتصال الخادم" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "إعداد التخزين" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "تعقب التغيرات" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "تخصيص خيارات التصدير" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "تخصيص خيارات الإستيراد" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "تخصيص اطار التصفح" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "تخصيص الإطار الرئيسي" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "إستعلام SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "صندوق إستعلام SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "تخصيص الروابط الموجودة في صندوق إستعلام SQL" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "إعدادات إستعلامات SQL" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "بدء التشغيل" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "تخصيص صفحة بدء التشغيل" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "بنية قاعدة البيانات" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "بنية الجدول" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "التبويبات" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "إختر الطريقة التي تعمل بها التبويبات" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "بناء الارتباطات" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "حجم الورق" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "حقول نصية" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "تخصيص حقول الإدخال النصية" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "نص" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "تخصيص الخيارات الإفتراضية" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "تحذيرات" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "إلغاء عرض بعض التحذيرات في phpMyAdmin" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6431,15 +6444,15 @@ msgstr "" "تفعيل ضغط [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] لعمليات التصدير " "والإستيراد" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "مدخلات إضافية لـ iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6451,39 +6464,39 @@ msgstr "" "إذا كان مفعل , فإن phpMyAdmin سوف تستمر في تنفيذ الإستعلامات المتعددة حتى " "لو فشل بعضها" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "تجاهل أخطاء الجمل المتعددة" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "الإستيراد الجزئي: السماح بالمقاطعة" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "تعطيل التحقق من المفتاح الغريب" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "لاتحبط عندما يكون الخطأ في جمل الإدخال INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "استبدال بيانات الجدول بالملف" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6495,82 +6508,82 @@ msgstr "" "الهيئة الإفتراضي ; كن مدرك بأن هذه القائمة تعتمد على مكان (قاعدة البيانات " "والجدول)" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "هيئة الملفات المستوردة" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "إستعمل الجملة LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "ضع أسماء الصفوف في السطر الأول" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "لاتستورد صفوف فارغة" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "عملات الإستيراد ($5.00 إلى 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "النسبة المئوية للإستيراد كرقم عشري (12.00% إلى .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "عدد الإستعلامات التي يتخطاها من البداية" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "إستيراد جزئي: تخطي الإستعلامات" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "الحالة الأولية" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "كم عدد الصفوف التي يمكن إدخالها مرة واحدة" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "عدد الصفوف المدخلة" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "حد أحرف العمود" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "حذف كل الكوكيز عند الخروج" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6580,11 +6593,11 @@ msgid "" "kbd] authentication mode." msgstr "تعريف ما إذا كان سوف يتذكر تسجيل الدخول الأخير من تحقق الكوكيز أم لا" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "تذكر إسم المستخدم" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6592,98 +6605,98 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "تحديد كم المدة التي يبقى فيها الكوكيز" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "صلاحية دخول الكوكيز" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "مضاعفة حجم مربع النص لأعمدة LONGTEXT" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "مربع نص أكبر لـ LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "المستخدمين لايمكنهم وضع قيمة أكبر" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Minimum number of databases to display the database filter box" msgid "Maximum number of databases displayed in database list." msgstr "أقل عدد جداول اللتي تعرض في صندوق ترشيح الجداول" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "قواعد بيانات أكبر" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for input field" msgid "Maximum items on first level" msgstr "أقصى حجم لحقل الإدخال" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Minimum number of databases to display the database filter box" msgid "Maximum number of tables displayed in table list." msgstr "أقل عدد جداول اللتي تعرض في صندوق ترشيح الجداول" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "جداول أكبر" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -6693,45 +6706,45 @@ msgid "" "([kbd]0[/kbd] for no limit)." msgstr "ضع الوقت المحدد لعمل البرنامج ([kbd]0[/kbd]: لانهائي)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "حدود الذاكرة" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "عرض الشعار في الإطار الأيسر" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "عرض الشعار في الإطار الأيسر" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "عرض الشعار" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to." msgstr "إعمل رابط للمكان الذي يشير اليه الشعار" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "رابط الشعار" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -6743,31 +6756,31 @@ msgstr "" "فتح الصفحة المرتبطة في النافذة الرئيسية ([kbd]main[/kbd]) أو في نافذة جديدة " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "هدف رابط الشعار" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "عرض إختيار الخادم في الجزء العلوي من الإطار الأيسر" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "عرض إختيار الخوادم" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "الهدف لإيقونة الوصول السريع" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "الهدف لإيقونة الوصول السريع" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "" @@ -6775,894 +6788,894 @@ msgid "" "display a filter box." msgstr "اقل عدد جداول تعرض في صندوق تصفية الجداول" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of items to display the filter box" msgstr "اقل عدد جداول تعرض في صندوق تصفية الجداول" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "أقل عدد جداول اللتي تعرض في صندوق ترشيح الجداول" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "فاصل شجرة قاعدة البيانات" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "فاصل شجرة الجدول" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "أقصى عمق لشجرة الجدول" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "توضيح الخادم تحت مؤشر الفأرة" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "تفعيل التوضيح (highlighting)" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "عنوان الجدول" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "الجداول المستعملة مؤخراً" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "هذه هي روابط التعديل والنسخ والحذف" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "ترتيب طبيعي" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, fuzzy #| msgid "Use only icons, only text or both" msgid "Use only icons, only text or both." msgstr "إستخدم الأيقونات او النصوص فقط , أو الإثنان" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "عنوان الجدول" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "الترتيب الإفتراضي" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Persistent connections" msgid "Use persistent connections to MySQL databases." msgstr "الإتصالات الثابتة" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "الإتصالات الثابتة" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "حماية الأعمدة من نوع BINARY" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, fuzzy #| msgid "How many queries are kept in history" msgid "How many queries are kept in history." msgstr "عدد الإستعلامات التي حفظت" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "محرك إعادة الترميز" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "تذكر ترتيب الجداول" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "الترتيب الإفتراضي" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "عمود عرض علائقي" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "خيارات عرض الخوادم" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "قيمة الجلسة" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication settings" msgid "Authentication method to use." msgstr "خيارات المصادقة" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Compress connection to MySQL server." msgstr "لا يمكن الدخول إلى خادم MySQL" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "مضيف التحكم" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control host" msgid "Control port" msgstr "مضيف التحكم" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "عواميد منطقة النص" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "لاتغير كلمة السر" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "اسم قاعدة البيانات" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "الجدول المستخدم مؤخرا" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "متغيرات" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "إستخدم الجداول" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "استخدم الجدول المضيف" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "إظهار الدمغة الزمنية لتاريخ الإنشاء" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "أعرض نصيحة" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 msgid "" +"Defines whether SQL queries generated by phpMyAdmin should be displayed." +msgstr "" + +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" +msgstr "" + +#: libraries/config/messages.inc.php:764 +msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "إحتفظ بصندوق الإستعلام" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " @@ -7674,53 +7687,53 @@ msgid "" msgstr "" "عبارة المرور السرية تستخدم لتشفير كعكة الإنترنت في[kbd]cookie[/kbd] المصادقة" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "صلاحية دخول الكوكيز" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "عواميد منطقة النص" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "العنوان الغيابي" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7728,52 +7741,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 msgid "" "The url of the proxy to be used when retrieving the information about the " "latest version of phpMyAdmin or when submitting error reports. You need this " @@ -7781,34 +7794,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "اسم المستخدم" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "كلمة السر" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -7820,53 +7833,53 @@ msgstr "" "تفعيل ضغط [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] لعمليات التصدير " "والإستيراد" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "زيب" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Issued queries" msgid "Enter executes queries in console" msgstr "إستعلامات صادرة" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7888,46 +7901,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Spreadsheet" msgstr "مستند مفتوح" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "خيارات تصدير قاعدة بيانات" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "بيانات CSV لبرنامج ميكروسوفت إكسل" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Text" @@ -8179,20 +8192,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "لا كلمة سر" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "كلمة المرور:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8334,8 +8347,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8854,8 +8867,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9342,7 +9355,7 @@ msgstr "تسجيل خروج" msgid "phpMyAdmin documentation" msgstr "مستندات وثائقية لـ phpMyAdmin (بالإنجليزية)" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Navigation frame" msgid "Reload navigation panel" @@ -10031,8 +10044,8 @@ msgstr "أهلا بك في %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10292,7 +10305,7 @@ msgstr "ضع أسماء الحقول في السطر الأول" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11319,7 +11332,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11327,16 +11340,16 @@ msgstr "اسم المستخدم" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "اسم المستخدم" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "كلمة السر" @@ -11366,10 +11379,10 @@ msgstr "رقم الخادم" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "المزود" @@ -11381,47 +11394,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "أي مزود" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "محلي" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "هذا المضيف" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "أي مستخدم" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "استخدم حقل نص" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "استخدم الجدول المضيف" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "أعد كتابة" @@ -12264,7 +12277,7 @@ msgstr "لا شيء" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12333,14 +12346,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12351,7 +12364,7 @@ msgid "Administration" msgstr "إدارة" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "صلاحيات عامة" @@ -12362,7 +12375,7 @@ msgid "Global" msgstr "عام" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" @@ -12379,274 +12392,274 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "بيانات الدخول" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "استخدم حقل نص" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "لاتغير كلمة السر" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "تم تغيير كلمة المرور لـ %s بنجاح." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "لقد أبطلت الامتيازات لـ %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "إضافة مستخدم" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "المستخدمين ذوي صلاحية الوصول إلى \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "The row has been deleted." msgid "User has been added." msgstr "لقد تم حذف الصف" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "المستخدم" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "منح" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "المستخدم(ون) لم يتم إيجادهم." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "أي" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "عام" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "حرف شامل" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "خاص بقاعدة بيانات" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "تحرير الامتيازات" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "إبطال" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "عدل الصف التالي" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… أبق القديم." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… احذف القديم من جداول المستخدمين." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و…" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "إضافة الصلاحيات على قاعدة البيانات التالية" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "إضافة الصلاحيات على الجدول التالي" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "احذف المستخدمين المحددين" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "إعادة تحميل الأمتيازات" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "لقد جددت وحدثت الإمتيازات لـ %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "قيد حذف %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "اسم المستخدم %s موجود مسبقاً!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "الإمتيازات" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "تحرير الامتيازات" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "معلومات المستخدم" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." @@ -14456,23 +14469,23 @@ msgstr "اسم الفهرس :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "نوع الفهرس :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "المستخدم" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "تعليق" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15526,8 +15539,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15660,8 +15673,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -17194,8 +17207,8 @@ msgstr "" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %" -#~ "sهنا%s." +#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط " +#~ "%sهنا%s." #~ msgid "Execute bookmarked query" #~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية" diff --git a/po/az.po b/po/az.po index ff70fa9cbd..95cfd85eae 100644 --- a/po/az.po +++ b/po/az.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-02-19 17:42+0200\n" "Last-Translator: Sevdimali İsa \n" "Language-Team: Azerbaijani \n" +"Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: az\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2\n" @@ -67,7 +67,7 @@ msgstr "Cədvəl şərhləri:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Sütun" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Əlaqələr" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Birinci Dereceli" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Xeyr" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "aydınlaşdırmaq üçün %sbax%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Cədvəl" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Sıra sayı" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Boy" @@ -375,9 +375,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -573,15 +573,15 @@ msgstr "Həndəsə əlavə et" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -614,8 +614,8 @@ msgstr "Natamam parametrlər" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Güman ki, böyük bir fayl göndərməyə çalışırsınız. Zəhmət olmasa bu sərhəddi " "aşmaq üçün %sdokumentasiya%s istifadə edin." @@ -694,7 +694,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Geri" @@ -718,7 +718,7 @@ msgid "General Settings" msgstr "Ümumi Tənzimləmələr" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Parolu Dəyişdir" @@ -793,7 +793,7 @@ msgstr "Versiya informasiyası:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentasiya" @@ -886,8 +886,8 @@ msgid "" "extended features have been deactivated. %sFind out why%s. " msgstr "" "phpMyAdmin konfiqurasiya bazası bütövlükdə konfiqurasiya edilə bilmədi, bəzi " -"genişləndirilimiş xüsusiyyətlər deaktiv edildi. Səbəbini öyrənmək üçün %" -"sburaya%s klikləyin. " +"genişləndirilimiş xüsusiyyətlər deaktiv edildi. Səbəbini öyrənmək üçün " +"%sburaya%s klikləyin. " #: index.php:549 msgid "" @@ -1045,7 +1045,7 @@ msgstr "İndeks əlavə et" msgid "Edit Index" msgstr "İndeksi redaktə et" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "İndeksə %s sütun əlavə et" @@ -1074,7 +1074,7 @@ msgstr "Ən az bir sütun əlavə etməlisiniz." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "SQL önizləmə" @@ -1103,12 +1103,12 @@ msgstr "Host adı boşdur!" msgid "The user name is empty!" msgstr "İstifadəçi adı boş qaldı!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" @@ -1305,7 +1305,7 @@ msgstr "Zəhmət olmasa massivə ən azı bir dəyişən əlavə edin!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1578,7 +1578,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1791,7 +1791,7 @@ msgstr "Sorğu qutusunu göstər" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2040,7 +2040,7 @@ msgstr "Verilən nöqtə məzmunu" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Diqqete Alma" @@ -2212,7 +2212,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Hamısını göster" @@ -2306,7 +2306,7 @@ msgstr "Paneli Gizlət" msgid "Show hidden navigation tree items." msgstr "Gizli naviqasiya ağac bəndlərini göstər." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Əsas panel ilə əlaqələndir" @@ -2749,8 +2749,8 @@ msgstr "%s. sətirində gözlənilməyən simvollar." #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -"%1$s. sətirində gözlənilməyən simvollar. Gözlənən pəncərə, amma tapılan \"%2" -"$s\"." +"%1$s. sətirində gözlənilməyən simvollar. Gözlənən pəncərə, amma tapılan " +"\"%2$s\"." #: libraries/Advisor.class.php:475 msgid "per second" @@ -2808,16 +2808,16 @@ msgid "Delete" msgstr "Sil" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2935,7 +2935,7 @@ msgid "During current session" msgstr "Cari sessiya ərzində" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3313,8 +3313,8 @@ msgstr "SQL sorğunuz müvəffəqiyyətlə icra edilmişdir." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3349,6 +3349,7 @@ msgstr "Seçilənləri:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3364,12 +3365,12 @@ msgstr "Dəyişdir" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3556,7 +3557,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3571,11 +3572,11 @@ msgstr "Görünüş" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3591,7 +3592,7 @@ msgstr "Quruluş" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3617,9 +3618,9 @@ msgstr "Əlavə et" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Səlahiyyətlər" @@ -3679,9 +3680,9 @@ msgid "Central columns" msgstr "Orta sütunlar" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Verilənlər Bazaları" @@ -3789,7 +3790,7 @@ msgid "Recent" msgstr "Son" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Favorit cədvəllər" @@ -3860,7 +3861,7 @@ msgstr "Sıralama" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4210,14 +4211,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4471,7 +4472,7 @@ msgstr "Ən çox: %s%s" msgid "MySQL said: " msgstr "MySQL deyir: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL-i İzah Et" @@ -4483,7 +4484,7 @@ msgstr "SQL İzah Et-i Keç" msgid "Without PHP Code" msgstr "PHP Kodunu Gösterme" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" @@ -4596,13 +4597,13 @@ msgstr "Haqqında" msgid "Use this value" msgstr "Bu qiymətdən istifadə et" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4995,7 +4996,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5354,71 +5355,83 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Cədvəl ve sütun adlarını tək dırnaq arasına al" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Cədvəl ve sütun adlarını tək dırnaq arasına al" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Cədvəl strukturunun gizlənib gizlənəməyəcəyi." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Cədvəl strukturu əməliyyatlarını gizlət" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "MultiCədvəl baxımı(təmir) deaktiv" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s ifadəsi əlavə et" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Fayl olaraq qeyd et" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Faylın kodlaşdırması(charset)" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Sıxışdırma" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5428,60 +5441,60 @@ msgstr "Sıxışdırma" msgid "Put columns names in the first row" msgstr "Sütun adlarını ilk sətrə qoy" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Sütunların əhatə edildiyi işarə" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Sahələrin escape edildiyi işarə" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "NULL-u bununla dəyişdir" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Sütunlar bununla sonlandırılıb(Columns terminated by)" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Sətirlər bununla ləğv edilib(Lines terminated by)" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel versiyası" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Verilənlər Bazası adı Şablonu" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Server adı şablonu" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Cədvəl adı şablonu" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5492,588 +5505,588 @@ msgstr "Cədvəl adı şablonu" msgid "Dump table" msgstr "%s cedvel" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Cedvel başlığını daxil et" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Cədvəl başlığı" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Davam edən cədvəl başlığı" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Etiket açarı" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-tipi" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Əlaqələr" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Eksport metodu" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Mövcud fayl(lar)ın üzerine yaz" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Fayl adı şablonunu xatırla" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT dəyəri əlavə et" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Cədvəl ve sütun adlarını tək dırnaq arasına al" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Quruluş/Deyişdirilme/Yoxlama tarixleri" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Gecikmiş əlavələri istifadə et" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Görünüşləri cədvəl halında eksport et" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Göz ardı edilmiş əlavəetmələri istifadə et" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Verilənləri daxil edərkən istifadə olunacaq sintaksis" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Eksport tipi" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "UTC olaraq eksport etmə vaxtı" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Automatic recovery mode" msgid "Customize browse mode." msgstr "Avtomatik qurtarma rejimi" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Susmaya görə olan seçimləri özəlləşdir." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV verilenleri" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Redaktə modunu özəlləşdir." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Susmaya görə olan eksport seçimlərini özəlləşdirin." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Ümumi" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Susmaya görə İmport" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Susmaya görə ümumi import seçimlərini özəlləşdir." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Verilənlər Bazasını görüntülənməsi seçimləri." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Naviqasiya paneli" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Naviqasiya panelinin mövzusun(tema) dəyiş." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Serverlər" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Serverlərin görüntülənmə seçimləri." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Cədvəllərin görüntülənmə seçimləri." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Əsas Panel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Səhifə başlığı" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Sorğu pəncərəsi" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "İdentifikasiya" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "İdentifikasiya tənzimləmələri." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Eksport seçimlərini özəlləşdir" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Naviqasiya panelini özəlləşdir" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Əsas Paneli özəlləşdir" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL sorğuları" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL sorğu qutusu" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL sorğu tənzimləmələri." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Başlanğıc" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Başlanğıc səhifəsini fərdiləşdir." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Verilənlər Bazasının strukturu" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Cədvəl strukturu" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Tablar(Pəncərələr)" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Əlaqəli sxemi göstər" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Mətn sahəsi" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Mətn daxiletmə sahəsini fərdiləşdir." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Susmaya görə olan seçimləri fərdiləşdir" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Xəbərdarlıqlar" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "phpMyAdmin tərəfindən göstərilən bəzi xəbərdarlıqları deaktiv et." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "İlk sətirdəki sütun adları" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Sıfır qiymətləri üçün AUTO_INCREMENT qiyməti istifadə etmə" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6081,607 +6094,607 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "İlk səviyyədəki maksimum maddə" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Cədvəl siyahısında göstəriləcək maksimum cədvəl sayıdır." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maksimum cədvəllər" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Yaddaş limiti" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Gizli naviqasiya ağac bəndlərini göstər." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Naviqasiya panelində logonu göstər." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Naviqasiya panelinin yuxarısında server seçimini göstər." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Cədvəl naviqasiya çubuğu" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Ən çox son istifadə olunan cədvəl sayıdır; deaktiv etmək üçün 0 edin." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Son istifadə olunan cədvəllər" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Təbii Sıra" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Cədvəl naviqasiya çubuğu" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Cədvəlin sıralamasını xatırla" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Əlaqə görüntü sütunu" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, 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:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Sessiya deyeri" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "İstifadə üçün identifikasiya metodu." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Əlfəcin cədvəli" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "MySQL server bağlantısını sıxışdır(kompress)." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Əlaqə tipi" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Nəzarət serveri" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Nəzarət portu" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Verilənlər Bazalarını gizlət" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Server host adı" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns table" msgstr "Orta sütunlar" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -6693,43 +6706,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:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Parolsuz qoşulmağı sınayın." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -6740,30 +6753,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Verilənlər Bazasının adı" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Server portu" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Son istifadə edilən Cədvəl" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -6775,141 +6788,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:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Favorit cədvəllər" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Əlaqə cədvəli" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Server yuvası(socket)" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "MySQL server əlaqəsi üçün SSL aktivləşdirir." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Görünüş sütunları cədvəli" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "İfadələrdən izlərə" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Avtomatik olaraq verisyaları yarat" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -6917,205 +6930,205 @@ 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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "İstifadəçi cədvəlləri" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Yaradılma zaman nişanını göstər" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Sahə tiplərini göstər" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "İpucu göstər" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "SQL sorğularını göstər" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "SQL sorğusu" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Statistikaları göstər" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Əgər Suhosin aşkarlanarsa, ana səhifədə xəbərdarlıq göstərilir." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin xəbərdarlığı" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7123,41 +7136,41 @@ msgstr "" "Redaktə rejimində mətin sahəsinin ölçüsü(sütunlar), SQL sorğu mətni 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:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Mətn sahəsi sütunları" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Mətin Sahəsi sətirləri" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Susmaya görə başlıq" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -7165,52 +7178,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Son versiyanı yoxla" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 msgid "" "The url of the proxy to be used when retrieving the information about the " "latest version of phpMyAdmin or when submitting error reports. You need this " @@ -7218,80 +7231,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Proksi istifadəçi adı" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Proksi parolu" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Xəta hesabatları göndər" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Configuration file" msgid "Enable Zero Configuration mode" @@ -7313,46 +7326,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "Dokumentasiya" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Verilənlər bazası eksport variantları" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excel verilenleri üçün CSV" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument Mətni" @@ -7574,20 +7587,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Parol Yoxdur" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Parol:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Parolun Təkrarı:" @@ -7726,8 +7739,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8219,8 +8232,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8679,7 +8692,7 @@ msgstr "Sistemden Çıxış" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentasiyası" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Naviqasiya panelini yenidən yüklə" @@ -9327,8 +9340,8 @@ msgstr "%s - ə Xoş Gəlmisiniz" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Çox güman ki bunun səbəbi konfiurasiya faylını yaratmadığınızdandır. Bir " "dənəsin yaratmaq üçün %1$ssetup script%2$s istifadə edə bilərsiniz." @@ -9563,7 +9576,7 @@ msgstr "İlk sətirə sütun adlarını əlavə et:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Host:" @@ -10522,22 +10535,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "İstifadəçi adı:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "İstifadəçi adı" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Parol" @@ -10565,10 +10578,10 @@ msgstr "Server ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -10582,45 +10595,45 @@ msgstr "" "şəkildə başlar." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Hər hansı host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Yerli" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Bu Host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Hər hansı istifadəçi" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Mətn sahəsini istifadə et:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Host cədvəlini istifadə et" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Yenidən yazın" @@ -11359,7 +11372,7 @@ msgstr "Yox" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "İstifadəçi qrupu" @@ -11430,14 +11443,14 @@ msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Cədvələ xas səlahiyyətlər" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Qeyd: MySQL səlahiyyət adları ingilis dilində ifadə edilmişdir." @@ -11446,7 +11459,7 @@ msgid "Administration" msgstr "Administrasiya" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Qlobal səlahiyyətlər" @@ -11455,7 +11468,7 @@ msgid "Global" msgstr "Qlobal" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Verilənlər Bazasına Məxsus Səlahiyyətlər" @@ -11474,142 +11487,142 @@ msgstr "" "Səlahiyyət cədvəllərini yenidən yükləmədən yeni istifadəçilərin və " "səlahiyyətlərin əlavə edilməsinə icazə verir." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Sistemə Giriş Məlumatı" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Mətn sahəsi istifadə et" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" "Hesab eyni istifadəçi adıyla mövcuddur, ancaq fərqli host adıyla ola bilər." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Parolu dəyişdirmə" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s üçün parol müvəffəqiyyətlə dəyişdirilmişdir." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s üçün səlahiyyətləri geri aldınız." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "İstifadəçi əlavə et" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "İstifadəçi üçün Verilənlər Bazası" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Eyni adda baza yarat və bütün səlahiyyətləri ver." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" bazasındakı bütün səlahiyyətləri ver." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" Bazasına girişi olan istifadəçilər" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "İstifadəçi əlavə olundu." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "İstifadəçi" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "İcazə ver" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "İstifadəçiləri göstərmək üçün yetərsiz səlahiyyət." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "İstifadəçi tapılmadı." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Hər hansı" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "qlobal" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "bazaya xas" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "xüsusi işarə" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "cədvələ xas" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Səlahiyyətləri Dəyişdir" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Geri al" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "İstifadəçi qruplarını redaktə et" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… köhnəsini saxla." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… istifadəçi cədvəllərindən köhnəsini sil." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -11617,117 +11630,117 @@ msgstr "" "… Köhnə olanı istifadəçi cədvəllərindən sil və ardından səlahiyyətləri " "yenidən yüklə." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Sistem Giriş Məlumatını Dəyişdir / İstifadəçini Kopyala" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Eyni səlahiyyətlərə sahib yeni istifadəçi yarat və …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Sütuna xas Səlahiyyətlər" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Aşağıdakı verilənlər baza(ları)sı üçün səlahiyyət müəyyən et:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Aşağıdakı cədvəl üçün səlahiyyətləri müəyyən et:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Seçilən istifadəçiləri ləğv et" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "İstifadəçilərdən bütün aktiv səlahiyyətləri geri al və sonra da sil." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "İstifadəçilərlə eyni adlı verilənlər bazalarını ləğv et." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s silinir" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "%s üçün səlahiyyətlər" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Yeni" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Səlahiyyətləri redaktə et:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "İstifadəçilərə ümumi baxış" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Qeyd: phpMyAdmin istifadəçi səlahiyyətlərini birbaşa MySQL-in səlahiyyətlər " "cədvəllərindən almaqdadır. Əgər əllə nizamlamalar edilmişsə, bu cədvəllərin " "içərisindəkilər webserver-in istifadə etdiklərindən fərqli ola bilər. Bu " "halda, davam etmədən əvvəl, səlahiyyətləri %syenidən yükləməlisiniz%s." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Yeni istifadəçi əlavə etdiniz." @@ -13395,22 +13408,22 @@ msgstr "Indeks keş ölçüsü" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "İndex tipi :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "İstifadəçi:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy msgid "Comment:" msgstr "Qısa İzahatlar" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -14408,8 +14421,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14529,8 +14542,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/be.po b/po/be.po index b16f43ceff..882a2e2a00 100644 --- a/po/be.po +++ b/po/be.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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-01-09 18:19+0200\n" "Last-Translator: Viktar Palstsiuk \n" "Language-Team: Belarusian \n" +"Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: be\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.2-dev\n" #: changelog.php:36 license.php:28 @@ -68,7 +68,7 @@ msgstr "Камэнтар да табліцы:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "Калонка" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "Зьвязаная з" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "Першасны" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "Не" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -262,14 +262,14 @@ msgid "" msgstr "Сховішча канфігурацыі PHPMyAdmin дэактываванае. %sДаведацца чаму%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Табліца" @@ -282,7 +282,7 @@ msgid "Rows" msgstr "Радкі" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Памер" @@ -378,9 +378,9 @@ msgstr "Стан" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -593,15 +593,15 @@ msgstr "Дадаць новага карыстальніка" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -636,11 +636,11 @@ msgstr "Поўная ўстаўка" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, " "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " @@ -675,8 +675,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%" -"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " +"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца " +"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." #: import.php:534 @@ -730,7 +730,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Назад" @@ -754,7 +754,7 @@ msgid "General Settings" msgstr "Магчымасьці асноўных сувязяў" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Зьмяніць пароль" @@ -848,7 +848,7 @@ msgstr "Інфармацыя пра вэрсію" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Дакумэнтацыя" @@ -1137,7 +1137,7 @@ msgstr "Дадаць новае поле" msgid "Edit Index" msgstr "Рэдагаваць наступны радок" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1175,7 +1175,7 @@ msgstr "Трэба дадаць прынамсі адно поле." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1212,12 +1212,12 @@ msgstr "Пустое імя хосту!" msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" @@ -1442,7 +1442,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1749,7 +1749,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1998,7 +1998,7 @@ msgstr "SQL-запыт" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2272,7 +2272,7 @@ msgstr "Памер указальніка на дадзеныя" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ігнараваць" @@ -2465,7 +2465,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Паказаць усе" @@ -2579,7 +2579,7 @@ msgstr "Дадаць новае поле" msgid "Show hidden navigation tree items." msgstr "Паказаць сетку" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy msgid "Link with main panel" @@ -3148,16 +3148,16 @@ msgid "Delete" msgstr "Выдаліць" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3293,7 +3293,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3750,11 +3750,11 @@ msgstr "Ваш SQL-запыт быў пасьпяхова выкананы" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %" -"sдакумэнтацыі%s." +"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " +"%sдакумэнтацыі%s." #: libraries/DisplayResults.class.php:4560 #, fuzzy, php-format @@ -3791,6 +3791,7 @@ msgstr "З адзначанымі:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3806,12 +3807,12 @@ msgstr "Зьмяніць" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -4020,7 +4021,7 @@ msgstr "" "іх, магчыма, можна выдаліць." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Сэрвэр" @@ -4035,11 +4036,11 @@ msgstr "Выгляд" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -4055,7 +4056,7 @@ msgstr "Структура" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4081,9 +4082,9 @@ msgstr "Уставіць" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Прывілеі" @@ -4145,9 +4146,9 @@ msgid "Central columns" msgstr "Дадаць/выдаліць калёнку крытэру" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Базы дадзеных" @@ -4273,7 +4274,7 @@ msgid "Recent" msgstr "Скінуць" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4351,7 +4352,7 @@ msgstr "Сартаваньне" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4737,14 +4738,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -5001,7 +5002,7 @@ msgstr "Максымальны памер: %s%s" msgid "MySQL said: " msgstr "Адказ MySQL: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Тлумачыць SQL" @@ -5013,7 +5014,7 @@ msgstr "Не тлумачыць SQL" msgid "Without PHP Code" msgstr "Без PHP-коду" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Стварыць PHP-код" @@ -5135,13 +5136,13 @@ msgstr "Апісаньне" msgid "Use this value" msgstr "Выкарыстоўваць гэта значэньне" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5576,7 +5577,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5942,78 +5943,90 @@ msgstr "" msgid "Default table tab" msgstr "Перайменаваць базу дадзеных у" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Зваротнае двукосьсе ў імёнах табліц і палёў" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Зваротнае двукосьсе ў імёнах табліц і палёў" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Прапанаваная структура табліцы" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Прапанаваная структура табліцы" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Абслугоўваньне табліцы" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Выразы" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Захаваць як файл" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "Кадыроўка файла:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Фармат" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Сьціск" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -6025,75 +6038,75 @@ msgstr "Сьціск" msgid "Put columns names in the first row" msgstr "Пазначыць назвы палёў у першым радку" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Палі ўзятыя ў" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Палі экрануюцца" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "Замяняць NULL на" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Радкі падзеленыя" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Радкі падзеленыя" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Вэрсія Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 #, fuzzy msgid "Database name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 #, fuzzy msgid "Server name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 #, fuzzy msgid "Table name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6104,529 +6117,529 @@ msgstr "Шаблён назвы файла" msgid "Dump table" msgstr "%s табліц(ы)" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Уключыць загаловак табліцы" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Загаловак табліцы" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Працягнуты загаловак табліцы" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Ключ меткі" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-тып" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Сувязі" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тып экспарту" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Перазапісваць існуючы(я) файл(ы)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 #, fuzzy msgid "Remember file name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Зваротнае двукосьсе ў імёнах табліц і палёў" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Рэжым сумяшчальнасьці SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Стварэньне/Абнаўленьне/Праверка дат" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Выкарыстоўваць адкладзеныя ўстаўкі" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Адключыць праверку зьнешніх ключоў" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Стварыць новую табліцу ў БД %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Дадаць %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Шаснаццатковыя значэньні для поляў тыпу BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Выкарыстоўваць устаўкі ігнараваньняў" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Максымальная даўжыня створанага запыту" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "Тып экспарту" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Экспартаваць за адну транзакцыю" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 #, fuzzy msgid "Export time in UTC" msgstr "Тып экспарту" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Automatic recovery mode" msgid "Customize browse mode." msgstr "Рэжым аўтаматычнага ўзнаўленьня" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy msgid "Customize default options." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy msgid "Customize edit mode." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Export defaults" msgstr "Імпартаваць файлы" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy msgid "Customize default export options." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Згенэраваць" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 #, fuzzy msgid "Import defaults" msgstr "Імпартаваць файлы" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "Customize default common import options." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy msgid "Customize appearance of the navigation panel." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Сэрвэры" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Add new field" msgid "Main panel" msgstr "Дадаць новае поле" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Старонка:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Customize query window options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy msgid "Authentication" msgstr "Аўтэнтыфікацыя…" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Authentication settings." msgstr "Аўтэнтыфікацыя…" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "MySQL connection collation" msgid "Enter server connection parameters." msgstr "Супастаўленьне падлучэньня да MySQL" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Customize export options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 #, fuzzy msgid "Customize import defaults" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy msgid "Customize navigation panel" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy msgid "Customize main panel" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "Стан" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy msgid "Customize startup page." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "База дадзеных для карыстальніка" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "База дадзеных для карыстальніка" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "Табліца" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Рэляцыйная схема" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Памер паперы" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy msgid "Customize text input fields." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Тэкст Texy!" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Customize default options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -6637,122 +6650,122 @@ msgstr "" "скончваецца час выкананьня. Гэта можа быць добрым спосабам імпартаваньня " "вялікіх файлаў, аднак, гэта можа перапыніць транзакцыі." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Адключыць праверку зьнешніх ключоў" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Фармат імпартаванага файла" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Выкарыстоўваць ключавое слова LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Пазначыць назвы палёў у першым радку" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start." msgstr "Колькасьць (запытаў), якія трэба прапусьціць ад пачатку" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Number of inserted rows" msgstr "Колькасьць адсартаваных радкоў." -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6760,51 +6773,51 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of databases displayed in database list." msgstr "Колькасьць адкрытых табліц." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Maximum databases" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6812,13 +6825,13 @@ msgid "" "the navigation tree." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "Максымальны памер для часовых файлаў сартаваньня" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6826,99 +6839,99 @@ msgid "" "tree." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of tables displayed in table list." msgstr "Колькасьць адкрытых табліц." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Memory limit" msgstr "Абмежаваньні рэсурсаў" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Паказаць сетку" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy msgid "Show logo in navigation panel." msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "The number of tables that are open." msgid "" @@ -6926,973 +6939,973 @@ msgid "" "display a filter box." msgstr "Колькасьць адкрытых табліц." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of items to display the filter box" msgstr "Колькасьць адкрытых табліц." -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of databases to display the database filter box" msgstr "Колькасьць адкрытых табліц." -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 #, fuzzy msgid "Database tree separator" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Загаловак табліцы" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Колькасьць адкрытых табліц." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy msgid "Recently used tables" msgstr "Праверыць табліцу" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Зьмяніць парадак табліцы" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Загаловак табліцы" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Перайменаваць табліцу ў" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key default sort order" msgstr "Першасны ключ быў дададзены да %s." -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Патокаў узнаўленьня" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display field" msgid "Relational display" msgstr "Адлюстраванае поле сувязі" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 -msgid "Directory where exports can be saved on server." -msgstr "" - -#: libraries/config/messages.inc.php:554 -#, fuzzy -msgid "Save directory" -msgstr "Хатняя тэчка дадзеных" - #: libraries/config/messages.inc.php:555 -msgid "Leave blank if not used." +msgid "Directory where exports can be saved on server." msgstr "" #: libraries/config/messages.inc.php:556 #, fuzzy -msgid "Host authorization order" -msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" +msgid "Save directory" +msgstr "Хатняя тэчка дадзеных" #: libraries/config/messages.inc.php:557 -msgid "Leave blank for defaults." +msgid "Leave blank if not used." msgstr "" #: libraries/config/messages.inc.php:558 #, fuzzy -msgid "Host authorization rules" +msgid "Host authorization order" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" #: libraries/config/messages.inc.php:559 -msgid "Allow logins without a password" +msgid "Leave blank for defaults." msgstr "" #: libraries/config/messages.inc.php:560 +#, fuzzy +msgid "Host authorization rules" +msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" + +#: libraries/config/messages.inc.php:561 +msgid "Allow logins without a password" +msgstr "" + +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Значэньне сэсіі" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy msgid "Authentication method to use." msgstr "Аўтэнтыфікацыя…" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 #, fuzzy msgid "Authentication type" msgstr "Аўтэнтыфікацыя…" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Compress connection to MySQL server." msgstr "Немагчыма залагавацца на сэрвэр MySQL" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 #, fuzzy msgid "Connection type" msgstr "Падлучэньні" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Любы хост" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Любы хост" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "імя сэрвэра" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "Не зьмяняць пароль" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "імя базы дадзеных" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "ID сэрвэра" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Аналізаваць табліцу" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Зьменныя" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Рамантаваць табліцу" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "Выбар сэрвэра" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Паказваць камэнтары калёнак" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Дэфрагмэнтаваць табліцу" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Выразы" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Рэжым аўтаматычнага ўзнаўленьня" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Выкарыстоўваць табліцы" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Выкарыстоўваць табліцу хостаў" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Паказаць інфармацыю пра PHP" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy msgid "Show Last check timestamp" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Паказаць адкрытыя табліцы" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Паказаць сетку" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "Паказаць поўныя запыты" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:764 -msgid "Allow to display database and table statistics (eg. space usage)." -msgstr "" - -#: libraries/config/messages.inc.php:765 -#, fuzzy -msgid "Show statistics" -msgstr "Статыстыка радку" - #: libraries/config/messages.inc.php:766 -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:767 #, fuzzy +msgid "Show statistics" +msgstr "Статыстыка радку" + +#: libraries/config/messages.inc.php:768 +msgid "" +"Mark used tables and make it possible to show databases with locked tables." +msgstr "" + +#: libraries/config/messages.inc.php:769 +#, fuzzy msgid "Skip locked tables" msgstr "Паказаць адкрытыя табліцы" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy msgid "Default title" msgstr "Перайменаваць базу дадзеных у" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7900,53 +7913,53 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 #, fuzzy msgid "Upload directory" msgstr "Хатняя тэчка дадзеных" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7954,85 +7967,85 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Імя карыстальніка:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Пароль" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "ID сэрвэра" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Enable Zero Configuration mode" @@ -8058,48 +8071,48 @@ msgstr "Апаратная аўтэнтыфікацыя скончылася н msgid "Signon authentication" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV з выкарыстаньнем LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Спэцыфікацыя Open Document" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Іншы колер" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV для дадзеных MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8352,20 +8365,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Пароль:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8535,12 +8548,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: %3" -#| "$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: " +#| "%3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -9125,8 +9138,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9620,7 +9633,7 @@ msgstr "Выйсьці з сыстэмы" msgid "phpMyAdmin documentation" msgstr "Дакумэнтацыя па phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "Налады экспарту базы дадзеных" @@ -10314,8 +10327,8 @@ msgstr "Запрашаем у %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго " "стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s." @@ -10584,7 +10597,7 @@ msgstr "Пазначыць назвы палёў у першым радку" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11663,7 +11676,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11671,16 +11684,16 @@ msgstr "Імя карыстальніка" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Імя карыстальніка" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Пароль" @@ -11711,10 +11724,10 @@ msgstr "ID сэрвэра" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Хост" @@ -11726,47 +11739,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Любы хост" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Лякальны" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Гэты хост" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Любы карыстальнік" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Выкарыстоўваць тэкставае поле" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Выкарыстоўваць табліцу хостаў" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Пацьверджаньне" @@ -12596,7 +12609,7 @@ msgstr "Няма" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12670,14 +12683,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12688,7 +12701,7 @@ msgid "Administration" msgstr "Адміністраваньне" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Глябальныя прывілеі" @@ -12699,7 +12712,7 @@ msgid "Global" msgstr "глябальны" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" @@ -12718,280 +12731,280 @@ msgstr "" "Дазваляе дадаваць карыстальнікаў і прывілеі без перазагрузкі табліц " "прывілеяў." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Інфармацыя пра ўваход" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Не зьмяняць пароль" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s пасьпяхова зьменены." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вы анулявалі прывілеі для %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Любы карыстальнік" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "База дадзеных для карыстальніка" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Праверыць прывілеі для базы \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Карыстальнікі з правамі доступу да \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Выгляд %s быў выдалены" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Карыстальнік" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знойдзены карыстальнік." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Любы" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "глябальны" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "шаблён" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "спэцыфічны для базы дадзеных" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Рэдагаваць прывілеі" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Ануляваць" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy msgid "Edit user group" msgstr "Вэб-сэрвэр" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… пакінуць старога." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… выдаліць старога з табліцы карыстальнікаў." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць прывілеі." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Дадаць прывілеі на наступную базу" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх " "літаральнага выкарыстаньня." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Дадаць прывілеі на наступную табліцу" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Выдаліць выбраных карыстальнікаў" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "На выбраныя карыстальнікі для выдаленьня!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Перазагрузіць прывілеі" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы зьмянілі прывілеі для %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Выдаленьне %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Карыстальнік %s ужо існуе!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Прывілеі" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Рэдагаваць прывілеі" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Карыстальнікі" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц " "прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." @@ -14943,23 +14956,23 @@ msgstr "Памер кэшу індэксаў" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Тып індэкса:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Карыстальнік" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Камэнтар" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -16008,8 +16021,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -16142,8 +16155,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -17173,8 +17186,8 @@ msgstr "максымум адначасовых злучэньняў" #~ "%s." #~ msgstr "" #~ "Немагчыма праініцыялізаваць праверку SQL. Калі ласка, праверце, ці " -#~ "ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %" -#~ "sдакумэнтацыі%s." +#~ "ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў " +#~ "%sдакумэнтацыі%s." #, fuzzy #~| msgid "Error: Relation not added." diff --git a/po/be@latin.po b/po/be@latin.po index 8482507b90..360e2b07cf 100644 --- a/po/be@latin.po +++ b/po/be@latin.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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-03-28 11:02+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) \n" +"Language: be@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: be@latin\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.9-dev\n" #: changelog.php:36 license.php:28 @@ -69,7 +69,7 @@ msgstr "Kamentar da tablicy" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "Nazvy kalonak" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "Źviazanaja z" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "Pieršasny" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "Nie" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -272,14 +272,14 @@ msgstr "" "vyśvietlić čamu, naciśnicie %stut%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tablica" @@ -292,7 +292,7 @@ msgid "Rows" msgstr "Radki" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Pamier" @@ -395,9 +395,9 @@ msgstr "Stan" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -606,15 +606,15 @@ msgstr "Dadać novaha karystalnika" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -649,11 +649,11 @@ msgstr "Poŭnaja ŭstaŭka" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, " "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " @@ -688,8 +688,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%" -"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " +"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca " +"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." #: import.php:534 @@ -743,7 +743,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Nazad" @@ -766,7 +766,7 @@ msgid "General Settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Źmianić parol" @@ -863,7 +863,7 @@ msgstr "Infarmacyja pra versiju" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dakumentacyja" @@ -1152,7 +1152,7 @@ msgstr "Dadać novaje pole" msgid "Edit Index" msgstr "Redagavać nastupny radok" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1190,7 +1190,7 @@ msgstr "Treba dadać prynamsi adno pole." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1227,12 +1227,12 @@ msgstr "Pustoje imia chostu!" msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" @@ -1458,7 +1458,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1769,7 +1769,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -2025,7 +2025,7 @@ msgstr "U vyhladzie SQL-zapytu" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2303,7 +2303,7 @@ msgstr "Pamier ukazalnika na dadzienyja" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignaravać" @@ -2496,7 +2496,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Pakazać usie" @@ -2612,7 +2612,7 @@ msgstr "Dadać novaje pole" msgid "Show hidden navigation tree items." msgstr "Pakazać sietku" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Use text field" @@ -3183,16 +3183,16 @@ msgid "Delete" msgstr "Vydalić" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3328,7 +3328,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3789,11 +3789,11 @@ msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %" -"sdakumentacyi%s." +"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " +"%sdakumentacyi%s." #: libraries/DisplayResults.class.php:4560 #, fuzzy, php-format @@ -3830,6 +3830,7 @@ msgstr "Z adznačanymi:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3845,12 +3846,12 @@ msgstr "Źmianić" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -4059,7 +4060,7 @@ msgstr "" "ich, mahčyma, možna vydalić." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -4074,11 +4075,11 @@ msgstr "Vyhlad" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -4094,7 +4095,7 @@ msgstr "Struktura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4120,9 +4121,9 @@ msgstr "Ustavić" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Pryvilei" @@ -4184,9 +4185,9 @@ msgid "Central columns" msgstr "Dadać/vydalić kalonku kryteru" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Bazy dadzienych" @@ -4315,7 +4316,7 @@ msgid "Recent" msgstr "Skinuć" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4393,7 +4394,7 @@ msgstr "Sartavańnie" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4783,14 +4784,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -5048,7 +5049,7 @@ msgstr "Maksymalny pamier: %s%s" msgid "MySQL said: " msgstr "Adkaz MySQL: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Tłumačyć SQL" @@ -5060,7 +5061,7 @@ msgstr "Nie tłumačyć SQL" msgid "Without PHP Code" msgstr "Biez PHP-kodu" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" @@ -5182,13 +5183,13 @@ msgstr "Apisańnie" msgid "Use this value" msgstr "Vykarystoŭvać heta značeńnie" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5624,7 +5625,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5990,77 +5991,89 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Zvarotnaje dvukośsie ŭ imionach tablic i paloŭ" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Zvarotnaje dvukośsie ŭ imionach tablic i paloŭ" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Prapanavanaja struktura tablicy" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Prapanavanaja struktura tablicy" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Absłuhoŭvańnie tablicy" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Vyrazy" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Zachavać jak fajł" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Farmat" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Ścisk" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -6072,72 +6085,72 @@ msgstr "Ścisk" msgid "Put columns names in the first row" msgstr "Paznačyć nazvy paloŭ u pieršym radku" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Pali ŭziatyja ŭ" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Pali ekranujucca" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "Zamianiać NULL na" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Radki padzielenyja" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Radki padzielenyja" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Versija Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6148,656 +6161,656 @@ msgstr "" msgid "Dump table" msgstr "%s tablic(y)" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Uklučyć zahałovak tablicy" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Zahałovak tablicy" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Praciahnuty zahałovak tablicy" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Kluč mietki" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-typ" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Suviazi" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Typ ekspartu" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Pierazapisvać isnujučy(ja) fajł(y)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Zvarotnaje dvukośsie ŭ imionach tablic i paloŭ" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Režym sumiaščalnaści SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Stvareńnie/Abnaŭleńnie/Pravierka dat" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Vykarystoŭvać adkładzienyja ŭstaŭki" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Stvaryć novuju tablicu ŭ BD %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Dadać %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Šasnaccatkovyja značeńni dla polaŭ typu BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Vykarystoŭvać ustaŭki ignaravańniaŭ" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maksymalnaja daŭžynia stvoranaha zapytu" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Ekspart" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Ekspartavać za adnu tranzakcyju" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Automatic recovery mode" msgid "Customize browse mode." msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Query results operations" msgid "Customize default options." msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Use text field" msgid "Customize edit mode." msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Query results operations" msgid "Customize default export options." msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Zgieneravać" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Query results operations" msgid "Customize default common import options." msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Database export options" msgid "Databases display options." msgstr "Nałady ekspartu bazy dadzienych" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Use text field" msgid "Customize appearance of the navigation panel." msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servery" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Relational display field" msgid "Servers display options." msgstr "Adlustravanaje pole suviazi" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Table options" msgid "Tables display options." msgstr "Opcyi tablicy" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Add new field" msgid "Main panel" msgstr "Dadać novaje pole" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Staronka:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Authenticating…" msgid "Authentication" msgstr "Aŭtentyfikacyja…" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authenticating…" msgid "Authentication settings." msgstr "Aŭtentyfikacyja…" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "MySQL connection collation" msgid "Enter server connection parameters." msgstr "Supastaŭleńnie padłučeńnia da MySQL" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Use text field" msgid "Customize navigation panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Use text field" msgid "Customize main panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings." msgstr "Nałady i źmiennyja servera" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Use text field" msgid "Customize startup page." msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "Baza dadzienych dla karystalnika" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "Baza dadzienych dla karystalnika" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relacyjnaja schiema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Pamier papiery" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields." msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Tekst Texy!" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Farmat impartavanaha fajła" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Vykarystoŭvać klučavoje słova LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Paznačyć nazvy paloŭ u pieršym radku" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start." msgstr "Kolkaść (zapytaŭ), jakija treba prapuścić ad pačatku" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6805,50 +6818,50 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of databases displayed in database list." msgstr "Kolkaść adkrytych tablic." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6856,13 +6869,13 @@ msgid "" "the navigation tree." msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "Maksymalny pamier dla časovych fajłaŭ sartavańnia" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6870,99 +6883,99 @@ msgid "" "tree." msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of tables displayed in table list." msgstr "Kolkaść adkrytych tablic." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Pakazać sietku" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Use text field" msgid "Show logo in navigation panel." msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "The number of tables that are open." msgid "" @@ -6970,964 +6983,964 @@ msgid "" "display a filter box." msgstr "Kolkaść adkrytych tablic." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of items to display the filter box" msgstr "Kolkaść adkrytych tablic." -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of databases to display the database filter box" msgstr "Kolkaść adkrytych tablic." -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Zahałovak tablicy" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Kolkaść adkrytych tablic." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analizavać tablicu" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Źmianić paradak tablicy" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Zahałovak tablicy" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Pierajmienavać tablicu ŭ" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Patokaŭ uznaŭleńnia" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display field" msgid "Relational display" msgstr "Adlustravanaje pole suviazi" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Relational display field" msgid "For display Options" msgstr "Adlustravanaje pole suviazi" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Značeńnie sesii" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authenticating…" msgid "Authentication method to use." msgstr "Aŭtentyfikacyja…" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Luby chost" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Luby chost" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "Nie źmianiać parol" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "imia bazy dadzienych" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizavać tablicu" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Źmiennyja" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Pakazvać kamentary kalonak" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defrahmentavać tablicu" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Vyrazy" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Vykarystoŭvać tablicy" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Vykarystoŭvać tablicu chostaŭ" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Pakazać infarmacyju pra PHP" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy msgid "Show Last check timestamp" msgstr "Pakazać stan zaležnych serveraŭ" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Pakazać adkrytyja tablicy" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Pakazać sietku" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 msgid "" +"Defines whether SQL queries generated by phpMyAdmin should be displayed." +msgstr "" + +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" +msgstr "" + +#: libraries/config/messages.inc.php:764 +msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "in query" msgid "Retain query box" msgstr "pa zapytu" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Pa zmoŭčańni" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7935,52 +7948,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7988,86 +8001,86 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username:" msgid "Proxy username" msgstr "Imia karystalnika:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Parol" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Execute bookmarked query" msgid "Enter executes queries in console" msgstr "Vykanać zapyt z zakładak" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Enable Zero Configuration mode" @@ -8097,50 +8110,50 @@ msgstr "Aŭtentyfikacyja…" msgid "Signon authentication" msgstr "Aŭtentyfikacyja…" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV z vykarystańniem LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Specyfikacyja Open Document" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Inšy koler" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 #, fuzzy #| msgid "Database export options" msgid "Database export options" msgstr "Nałady ekspartu bazy dadzienych" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV dla dadzienych MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8394,20 +8407,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Biez parola" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Parol:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8575,12 +8588,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: %3" -#| "$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: " +#| "%3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu " "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " @@ -9173,8 +9186,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9668,7 +9681,7 @@ msgstr "Vyjści z systemy" msgid "phpMyAdmin documentation" msgstr "Dakumentacyja pa phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Use text field" msgid "Reload navigation panel" @@ -10365,8 +10378,8 @@ msgstr "Zaprašajem u %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab " "jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s." @@ -10637,7 +10650,7 @@ msgstr "Paznačyć nazvy paloŭ u pieršym radku" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11147,8 +11160,8 @@ msgstr "" "dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar " "vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar " "vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo " -"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U " -"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " +"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). " +"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " "parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), " "a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()." @@ -11718,7 +11731,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11726,16 +11739,16 @@ msgstr "Imia karystalnika" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Imia karystalnika" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Parol" @@ -11765,10 +11778,10 @@ msgstr "ID servera" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Chost" @@ -11780,47 +11793,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Luby chost" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lakalny" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Hety chost" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Luby karystalnik" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Vykarystoŭvać tekstavaje pole" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Vykarystoŭvać tablicu chostaŭ" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Paćvierdžańnie" @@ -12653,7 +12666,7 @@ msgstr "Nijakaja" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12727,14 +12740,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12745,7 +12758,7 @@ msgid "Administration" msgstr "Administravańnie" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Hlabalnyja pryvilei" @@ -12756,7 +12769,7 @@ msgid "Global" msgstr "hlabalny" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" @@ -12775,282 +12788,282 @@ msgstr "" "Dazvalaje dadavać karystalnikaŭ i pryvilei biez pierazahruzki tablic " "pryvilejaŭ." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Infarmacyja pra ŭvachod" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Nie źmianiać parol" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Parol dla %s paśpiachova źmienieny." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Vy anulavali pryvilei dla %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Luby karystalnik" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Baza dadzienych dla karystalnika" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Vyhlad %s byŭ vydaleny" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Karystalnik" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znojdzieny karystalnik." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Luby" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "hlabalny" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "šablon" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specyfičny dla bazy dadzienych" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Redagavać pryvilei" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Anulavać" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Redagavać nastupny radok" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… pakinuć staroha." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… vydalić staroha z tablicy karystalnikaŭ." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Dadać pryvilei na nastupnuju bazu" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Symbali padstanoŭki % i _ musiać być ekranavanymi symbalem \\ dla ich " "litaralnaha vykarystańnia." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Vydalić vybranych karystalnikaŭ" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" "Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Na vybranyja karystalniki dla vydaleńnia!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Pierazahruzić pryvilei" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Vy źmianili pryvilei dla %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Vydaleńnie %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Karystalnik %s užo isnuje!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Pryvilei" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Redagavać pryvilei" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Karystalniki" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic " "pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, " "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." @@ -15004,23 +15017,23 @@ msgstr "Pamier kešu indeksaŭ" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Typ indeksa:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Karystalnik" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Kamentar" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -16069,8 +16082,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -16205,8 +16218,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -17246,8 +17259,8 @@ msgstr "maksymum adnačasovych złučeńniaŭ" #~ "%s." #~ msgstr "" #~ "Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci " -#~ "ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" -#~ "sdakumentacyi%s." +#~ "ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " +#~ "%sdakumentacyi%s." #, fuzzy #~| msgid "Error: Relation not added." diff --git a/po/bg.po b/po/bg.po index 5156dec6c5..538c29fc30 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-06 10:58+0200\n" "Last-Translator: Valter Georgiev \n" "Language-Team: Bulgarian \n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.3-dev\n" @@ -67,7 +67,7 @@ msgstr "Коментари към таблицата:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Kолона" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Свързана към" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Първичен" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Не" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "защо натиснете %sтук%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Таблица" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Редове" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Размер" @@ -372,9 +372,9 @@ msgstr "Състояние" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -569,15 +569,15 @@ msgstr "Добави геометрия" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -610,8 +610,8 @@ msgstr "Непълни параметри" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sдокументацията%s за да намерите начин да избегнете това ограничение." @@ -701,7 +701,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Назад" @@ -725,7 +725,7 @@ msgid "General Settings" msgstr "Общи настройки" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Смяна на паролата" @@ -798,7 +798,7 @@ msgstr "Версия:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Документация" @@ -1055,7 +1055,7 @@ msgstr "Добавяне индекс" msgid "Edit Index" msgstr "Редактиране индекс" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Добавяне на %s колона(и) към индекса" @@ -1082,7 +1082,7 @@ msgstr "Трябва да добавите поне една колона." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Преглед на SQL" @@ -1111,12 +1111,12 @@ msgstr "Името на хоста е празно!" msgid "The user name is empty!" msgstr "Потребителското име е празно!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Паролата е празна!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" @@ -1317,7 +1317,7 @@ msgstr "Моля добавете поне една променлива към #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1608,7 +1608,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1819,7 +1819,7 @@ msgstr "Показване формата за заявки" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2068,7 +2068,7 @@ msgstr "Съдържание на точката с данни" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Игнориране" @@ -2246,7 +2246,7 @@ msgstr "Щракнете стрелката,
за да изберете к #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Показване на всички" @@ -2347,7 +2347,7 @@ msgstr "Скриване на панела" msgid "Show hidden navigation tree items." msgstr "Показване на скритото навигационно дърво." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Свързване с главния панел" @@ -2838,16 +2838,16 @@ msgid "Delete" msgstr "Изтриване" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2964,7 +2964,7 @@ msgid "During current session" msgstr "По време на текущата сесия" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3374,8 +3374,8 @@ msgstr "SQL заявката беше изпълнена успешно" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s." #: libraries/DisplayResults.class.php:4560 @@ -3413,6 +3413,7 @@ msgstr "Когато има отметка:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3428,12 +3429,12 @@ msgstr "Промяна" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3636,7 +3637,7 @@ msgstr "" "бъде премахнат." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Сървър" @@ -3651,11 +3652,11 @@ msgstr "Изглед" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3671,7 +3672,7 @@ msgstr "Структура" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3697,9 +3698,9 @@ msgstr "Вмъкване" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Права" @@ -3761,9 +3762,9 @@ msgid "Central columns" msgstr "Колони в текство поле" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "БД" @@ -3883,7 +3884,7 @@ msgid "Recent" msgstr "Изчистване" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -3964,7 +3965,7 @@ msgstr "Сортиране" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4336,14 +4337,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4595,7 +4596,7 @@ msgstr "Максимум: %s%s" msgid "MySQL said: " msgstr "MySQL отговори: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Обяснение на SQL" @@ -4607,7 +4608,7 @@ msgstr "Пропусни Explain SQL" msgid "Without PHP Code" msgstr "Без PHP код" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Създаване на PHP код" @@ -4726,13 +4727,13 @@ msgstr "Описание" msgid "Use this value" msgstr "Използване тази стойност" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5155,7 +5156,7 @@ msgid "Set value: %s" msgstr "Стойност: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Стойност по подразбиране" @@ -5605,25 +5606,37 @@ msgstr "Показваният подпрозорец при отваряне н msgid "Default table tab" msgstr "Подпрозорец по подразбиране за таблици" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Ограждане на имената на таблици и полета с обратни апострофи" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Ограждане на имената на таблици и полета с обратни апострофи" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Hide table structure actions" msgid "Whether the table structure actions should be hidden." msgstr "Скриване на действията за промяна на структурата" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Скриване на действията за промяна на структурата" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Показване сървърите като списък вместо падащо меню." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Показване на сървърите в списък" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5631,11 +5644,11 @@ msgstr "" "Забранява възможността за избор на много таблици за едновременно извършване " "на профилактика като оптимизиране или поправка." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Забрана на избора на много таблици за профилактика" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5647,39 +5660,39 @@ msgstr "" "Задайте брой секунди, за които скрипт може да върви ([kbd]0[/kbd] за без " "лимит)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Максимално време за изпълнение" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Добавяне на израз %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Изпращане" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Знаков набор на файла" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Компресия" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5689,70 +5702,70 @@ msgstr "Компресия" msgid "Put columns names in the first row" msgstr "Поставяне имената на полетата в първи ред" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" msgstr "Колоните са оградени от:" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" msgstr "Колоните са избегнати с:" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL with:" msgid "Replace NULL with" msgstr "Замяна NULL с:" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Премахване CRLF знаци от колони" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Колоните завършват с" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" msgstr "Редовете завършват с:" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel версия" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Шаблон за име на БД" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Шаблон за име на сървър" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Шаблон за име на таблица" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5761,318 +5774,318 @@ msgstr "Шаблон за име на таблица" msgid "Dump table" msgstr "Схема на таблица" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Включване на заглавие на таблицата" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Заглавие на таблицата" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Продължение на заглавието на таблицата" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Етикет на ключа" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME тип" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Релации" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Метод за експортиране" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Запазване на сървъра" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Презаписване на съществуващите файл(ове)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Запомняне на шаблона за име на файл" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне AUTO_INCREMENT стойност" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Ограждане на имената на таблици и полета с обратни апострофи" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Режим на съвместимост на SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Опции за Създаване таблица:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Създаване/Обновяване/Проверка на дати" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Използване на отложени вмъквания" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Забрана на проверките за външен ключ" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export views as tables" msgstr "Експортиране на редове от таблица \"%s\"" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Добавяне на %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Използване на шестнадесетична стойност за BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Използване на INSERT IGNORE" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Използван синтаксис при вмъкване на данни" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Максимална дължина на създадената заявка" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Тип експорт" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Изолиране на експорта в транзакция" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Експортиране на време в UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "Налагане на защитена връзка, докато използвате phpMyAdmin" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Налагане на SSL връзка" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "външен ключ" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "външен ключ" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "Да се използва падащо меню при малко елементи" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "външен ключ" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Преглеждане" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "Персонализиране на преглеждането" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default options" msgid "Customize default options." msgstr "Персонализиране настройките по подразбиране" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Разработчик" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "Настройки за разработчици на phpMyAdmin" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Редактиране" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "Персонализиране на редактирането" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Настройки по подразбиране на експорта" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "Персонализиране настройките по подразбиране на експорта" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Свойства" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Общи" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "Настройки, на някои често използвани опции" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Настройки по подразбиране на импорта" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "Персонализиране настройките по подразбиране на ипорта" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Импорт / експорт" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "" "Настройки на директориите за импорт и експорт, и на опциите за компресиране" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "Опции за показване на БД" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "Управляваща рамка" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "Персонализиране изгледа на рамката за навигация" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Сървъри" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "Настройки показване сървъри" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "Настройки показване таблици" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "Главна рамка" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Други основни настройки" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "Настройки, които не са за другаде" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Заглавие в браузъра" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6080,19 +6093,19 @@ msgstr "" "Настройте заглавието в браузъра. Прочетете [doc@cfg_TitleTable]документацията" "[/doc] за магическите низове и техните стойности." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Прозорец за заявки" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Персонализиране прозореца за заявки" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Сигурност" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6104,25 +6117,25 @@ msgstr "" "Обърнете внимание, че phpMyAdmin е само потребителски интерфейс и неговите " "възможности не ограничават MySQL" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Основни настройки" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Удостоверяване" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "Настройки по удостоверяване" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Сървърна конфигурация" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6134,28 +6147,28 @@ msgstr "" "Разширена конфигурация на сървъра, не променяйте тези настройки, освен ако " "знаете за какво са" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "Параметри за връзка със сървъра" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Хранилище за конфигурация" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Следене за промени" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6163,123 +6176,123 @@ msgstr "" "Проследяване на промените, правени в БД. Изисква phpMyAdmin хранилище за " "конфигурация." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Персонализиране настройките на експорта" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Персонализиране настройките по подразбиране на импорта" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "Персонализиране рамката за навигация" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "Персонализиране основната рамка" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL заявки" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL прозорец за заявки" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "Персонализиране на връзките показвани след изпълнение на SQL заявка" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "Настройки на SQL заявките" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Начало" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "Персонализиране началната страница" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "БД структура" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Структура на таблица" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Подпрозорци" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Изберете поведението на разделите" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Показване схема на релациите" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Размер на хартията" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Текстови полета" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "Персонализиране на текстовите полета" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! текст" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Персонализиране настройките по подразбиране" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Предупреждения" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Скрива някои от предупрежденията, показвани от phpMyAdmin" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6291,134 +6304,134 @@ msgstr "" "Включване на [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] компресия при " "импорт и експорт" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Допълнителни параметри за iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Забрана на проверките за външен ключ" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Заместване на данните от таблицата с данните от файла" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Формат на импортирания файл" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Използване на ключовата дума LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Имена на колони в първи ред" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Празните редове да не бъдат импортирани" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Импортиране на валути ($5.00 към 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Импортиране процентите като десетични числа (12.00% към .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "Брой заявки, които да бъдат пропуснати от началото" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Първоначално състояние за плъзгачите" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "Колко реда да бъдат импортирани наведнъж" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Броят добавени редове" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Ограничаване знаците в колона" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Изтриване всички бисквитки при изход" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6430,11 +6443,11 @@ msgstr "" "Определя дали да се припомни или не потребителското име от предишен вход в " "режим на удостоверяване с бисквитка" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Запомняне потребителското име" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6442,96 +6455,96 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Валидност на бисквитката за вход" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "Двойни текстови полета за колони тип LONGTEXT" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "По-голямо текстово поле за LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Максимален брой скоро отваряни таблици; 0 за забрана" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of records saved in \"table_uiprefs\" table" msgid "Maximum number of databases displayed in database list." msgstr "Максимален брой записи в таблица \"table_uiprefs\"" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for input field" msgid "Maximum items on first level" msgstr "Максимален размер на текстовите полета" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of records saved in \"table_uiprefs\" table" msgid "Maximum number of tables displayed in table list." msgstr "Максимален брой записи в таблица \"table_uiprefs\"" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6543,203 +6556,203 @@ msgstr "" "Броят байтове, които скрипт може да заеме, напр. [kbd]32М[/kbd] ([kbd]0[/" "kbd] за без ограничение)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Ограничение на паметта" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Показване на скритото навигационно дърво." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "Показване логото в лявата рамка" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Показване лого" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to." msgstr "Адрес, към който ще сочи логото от рамката на навигацията" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Връзка на логото" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Цел за връзката на логото" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "Показване изборът на сървър в лявата рамка отгоре" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Цел на пиктограмата за бърз достъп" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Цел на пиктограмата за бърз достъп" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "Низ, който разделя БД в отделни разклонения на дърво" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Разделител на дървото на БД" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "Низ, който разделя таблици в отделни разклонения на дърво" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Разделител на дървото на таблици" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Максимална дълбочина на дървото на таблиците" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight row pointed by the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "Маркиране редовете, посочени с мишка" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Включване синтактичното оцветяване" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Заглавие на таблицата" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Максимален брой скоро отваряни таблици; 0 за забрана" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Максимален брой скоро отваряни таблици; 0 за забрана" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Последно отваряни таблици" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "Това са връзките Редакция, Копиране и Изтриване" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Къде да бъдат показани връзките в ред от таблица" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Естествен ред" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, fuzzy #| msgid "Use only icons, only text or both" msgid "Use only icons, only text or both." msgstr "Използване само пиктограми, само текст или и двете" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Заглавие на таблицата" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip буфериране" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -6751,21 +6764,21 @@ msgstr "" "[kbd]ИНТЕЛИГЕНТНО[/kbd] - т.е. низходящ ред за колони тип TIME, DATE, " "DATETIME и TIMESTAMP, иначе възходящ ред" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Ред за сортиране по подразбиране" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Use persistent connections to MySQL databases" msgid "Use persistent connections to MySQL databases." msgstr "Използване на постоянни връзки към MySQL БД" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Постоянни връзки" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -6777,11 +6790,11 @@ msgid "" msgstr "" "Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -6792,11 +6805,11 @@ msgid "" msgstr "" "Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -6807,228 +6820,228 @@ msgid "" msgstr "" "Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки" -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 #, fuzzy #| msgid "Allow to display all the rows" msgid "How to display the menu tabs" msgstr "Разрешаване показването на всички редове" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Защитаване на двоичните колони" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Постоянна история на заявките" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, fuzzy #| msgid "How many queries are kept in history" msgid "How many queries are kept in history." msgstr "Колко заявки да се съхраняват в историята" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Дължина на историята на заявки" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Запомняне сортирането на таблици" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Ред за сортиране по подразбиране" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Повтаряне на заглавката" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational schema" msgid "Relational display" msgstr "Релационна схема" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "Настройки показване сървъри" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "Оставете празно, ако не се използва" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "Оставете празно, за стойности по подразбиране" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Разрешаване вход без парола" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Разрешаване вход с потребител root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Сесийна стойност" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "Метод за удостоверяване" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Тип удостоверяване" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Таблица за белязки" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "Компресиране връзката към MySQL сървър" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Компресиране връзката" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Тип връзки" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Парола на контролен потребител" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7041,11 +7054,11 @@ msgstr "" "Специален MySQL потребител с ограничени права, [a@http://wiki.phpmyadmin.net/" "pma/controluser]още информация[/a]" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Контролен потребител" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 #, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " @@ -7057,11 +7070,11 @@ msgstr "" "Алтернативен хост, на който има хранилище с конфигурация; оставете празно, " "за да използвате вече дефиниран хост" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" 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 " @@ -7074,19 +7087,19 @@ msgstr "" "Алтернативен хост, на който има хранилище с конфигурация; оставете празно, " "за да използвате вече дефиниран хост" -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control host" msgid "Control port" msgstr "Контролен хост" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, fuzzy #| msgid "Hide databases matching regular expression (PCRE)" msgid "Hide databases matching regular expression (PCRE)." msgstr "Скриване БД, съответстващи на регулярен израз (PCRE)" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7095,166 +7108,166 @@ msgstr "" "системата за проследяване на дефекти на PMA[/a] и [a@http://bugs.mysql." "com/19588]дефекти на MySQL[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Забрана използването на INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Скриване БД" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Адрес за изход" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "Показване таблицата със състоянието на подчинените" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "Колони в текство поле" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "Опит за връзка без парола" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Връзка без парола" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Показване само на изброените БД" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, fuzzy #| msgid "Leave empty if not using config auth" msgid "Leave empty if not using config auth." msgstr "Оставете празно, ако не използвате удостоверяване от настройките" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Парола за удостоверяване от настройките" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Име БД" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Порт на сървъра" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Последно отваряна таблица" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Променливи" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Таблица за връзка" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7266,66 +7279,66 @@ msgstr "" "За примери посетете [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "видове удостоверяване[/a]" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Сокет на сървъра" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Използване SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Показване таблицата с колоните" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Таблица с визуалните настройки" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7333,11 +7346,11 @@ msgstr "" "Дали израз DROP DATABASE IF EXISTS да бъде добавян като първи ред в дневника " "при създаване на БД." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Добавяне DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7345,11 +7358,11 @@ msgstr "" "Дали израз DROP TABLE IF EXISTS да бъде добавян като първи ред в дневника " "при създаване на таблица." -#: libraries/config/messages.inc.php:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Добавяне DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7357,89 +7370,89 @@ msgstr "" "Дали израз DROP VIEW IF EXISTS да бъде добавян като първи ред в дневника при " "създаване на изглед." -#: libraries/config/messages.inc.php:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Добавяне DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Изрази, които да бъдат проследявани" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Автоматично създаване на версии" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Таблица за съхранение на потребителските предпочитания" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Използване таблиците" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "От таблица Host" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7447,36 +7460,36 @@ msgstr "" "Разбираемо за потребителя описание на този сървър. Ако е празно ще бъде " "показан хоста." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Описателно име на този сървър" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Разрешаване показването на всички редове" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Показване формуляр за смяна на парола" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Показване формуляр за създаване на БД" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Creation timestamp for all tables" @@ -7485,11 +7498,11 @@ msgstr "" "Показване или скриване на колона с времево клеймо на създаването за всички " "таблици" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Показване времево клеймо на създаването" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last update timestamp for all tables" @@ -7499,11 +7512,11 @@ msgstr "" "Показване или скриване на колона с времево клеймо на последната промяна за " "всички таблици" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Показване времево клеймо на последната промяна" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last check timestamp for all tables" @@ -7513,11 +7526,11 @@ msgstr "" "Показване или скриване на колона с времево клеймо на последната проверка за " "всички таблици" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Показване времево клеймо на последната проверка" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 #, fuzzy #| msgid "" #| "Defines whether or not type fields should be initially displayed in edit/" @@ -7529,31 +7542,31 @@ msgstr "" "Определя дали първоначално да бъдат показани типовете на полетата при " "редакция/вмъкване" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Показване типовете полета" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Показване поле с функциите" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, fuzzy #| msgid "Whether to show hint or not" msgid "Whether to show hint or not." msgstr "Дали да бъде показвана подсказка" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Показване подсказка" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7565,15 +7578,15 @@ msgstr "" "Показва връзка към изхода на [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Показване връзка към phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Показва подробна информация за MySQL сървъра" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -7582,11 +7595,11 @@ msgid "" msgstr "" "Определя дали SQL заявките, генерирани от phpMyAdmin да бъдат показвани" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Показване на SQL заявките" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 #, fuzzy #| msgid "" #| "Defines whether the query box should stay on-screen after its submission" @@ -7595,11 +7608,11 @@ msgid "" msgstr "" "Определя дали прозорецът със заявката да остане екрана след изпращането му" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Запазване отворен прозореца за заявки" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, fuzzy #| msgid "Allow to display database and table statistics (eg. space usage)" msgid "Allow to display database and table statistics (eg. space usage)." @@ -7607,28 +7620,28 @@ msgstr "" "Разрешаване показването на статистика за таблици и БД (напр. заемано " "пространство)" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Показване статистика" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Пропускане заключени таблици" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -7640,61 +7653,61 @@ msgid "" msgstr "" "Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Валидност на бисквитката за вход" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Колони в текство поле" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Реда в текстово поле" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 #, 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:784 +#: libraries/config/messages.inc.php:786 #, 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Заглавие по подразбиране" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 #, 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:788 +#: libraries/config/messages.inc.php:790 #, 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7702,57 +7715,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Папка за качване на файлове" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Проверка за обновление" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 #, 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7760,34 +7773,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "Потребителско име" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Парола" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -7799,55 +7812,55 @@ msgstr "" "Включване на [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " "компресия при импорт и експорт" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "Порт на сървъра" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Изпълнени заявки" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7869,46 +7882,46 @@ msgstr "HTTP удостоверяване" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV с LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Бърз" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Потребителски" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Опции за експорт на БД" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV за MS Excel данни" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8142,20 +8155,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Без парола" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Парола:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8298,8 +8311,8 @@ msgstr ", @TABLE@ ще стане името на таблицата" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8809,8 +8822,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9289,7 +9302,7 @@ msgstr "Изход от системата" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документация" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Navigation frame" msgid "Reload navigation panel" @@ -9988,8 +10001,8 @@ msgstr "Добре дошли в %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Изглежда не се създали конфигурационен файл. Вероятно ще искате да " "използвате %1$sскрипта за настройки%2$s, за да го създадете." @@ -10230,7 +10243,7 @@ msgstr "Поставяне имената на полетата в първи р #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11270,7 +11283,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11278,16 +11291,16 @@ msgstr "Потребителско име" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Потребителско име" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Парола" @@ -11317,10 +11330,10 @@ msgstr "Сървърен идентификатор" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Хост" @@ -11334,47 +11347,47 @@ msgstr "" "списък." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Всеки хост" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Локален" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Този Хост" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Всеки потребител" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "От текстовото поле" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "От таблица Host" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Отново" @@ -12147,7 +12160,7 @@ msgstr "Няма" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12222,14 +12235,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Специфични за таблицата права" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12240,7 +12253,7 @@ msgid "Administration" msgstr "Администрация" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Глобални права" @@ -12251,7 +12264,7 @@ msgid "Global" msgstr "глобален" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Специфични за БД права" @@ -12270,145 +12283,145 @@ msgstr "" "Позволява добавяне на потребители и права без презареждане на таблицата с " "правата." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Информация за логване" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "От текстовото поле" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Да не се сменя паролата" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Паролата на %s беше променена успешно." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вие отменихте правата на %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Нов потребител" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "БД за потребителя" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Създаване на БД със същото име и даване на пълни права." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Даване на всички привилегии на име с маска (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Даване на пълни права над БД \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Потребители с достъп до \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Потребител беше добавен." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Потребител" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Дадени" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Няма потребител." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Всеки" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "глобален" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "специфични за БД" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "знак за заместване" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "специфични за БД" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Редакция" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Отменяне" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Редакция сървър" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… запазване на стария." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… изтриване на стария от таблицата с потребители." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… отмяна на всички права от стария и след това изтриване." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12416,125 +12429,125 @@ msgstr "" "… изтриване на стария от таблицата с потребители и след това презареждане на " "правата." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Промяна информацията за вход / Копиране потребител" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Създаване нов потребител със същите права и …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Специфични за колоната права" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database:" msgid "Add privileges on the following database(s):" msgstr "Добавяне на права върху БД:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Ако искате да използвате в името символите '_' (долна черта) и '%' (процент) " "е необходимо да поставите пред тях символът '\\' (обратна наклонена черта)." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Добавяне на права към следната таблица:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Отстраняване избраните потребители" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отмяна на всички права на потребителите и след това изтриване." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Изтриване на БД, които имат имена като тези на потребителите." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Не за избрани потребители за изтриване!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Презареждане на правата" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Избраните потребители бяха изтрити успешно." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Вие променихте правата на %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Изтриване на %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Правата бяха презаредени успешно." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Потребител %s вече съществува!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Права на %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Нов" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Редакция" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Преглед потребители" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Забележка: phpMyAdmin взема потребителските права директно от таблицата с " "правата на MySQL. Съдържанието на тази таблица може да се различава от " "правата които използва сървъра ако към него са направени промени на ръка. В " "този случай, трябва да %sпрезаредите правата%s преди да продължите." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Избраният потребител не беше открит в таблицата с права." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Вие добавихте нов потребител." @@ -14293,23 +14306,23 @@ msgstr "Размер на буфера за индекси" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Тип на индекса:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Потребител:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Коментар" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -14671,8 +14684,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %" -"sскрипта за настройки%s." +"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез " +"%sскрипта за настройки%s." #: prefs_manage.php:321 msgid "Save to browser's storage" @@ -15317,8 +15330,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15437,8 +15450,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% от всички сортировки се изпълняват с временни таблици, тази стойност " "трябва да бъде под 10%%." @@ -16500,8 +16513,8 @@ msgstr "concurrent_insert e 0" #~ "%s." #~ msgstr "" #~ "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " -#~ "инсталирани необходимите PHP разширения, както е описано в %" -#~ "sдокументацията%s." +#~ "инсталирани необходимите PHP разширения, както е описано в " +#~ "%sдокументацията%s." #, fuzzy #~| msgid "Error: Relation not added." diff --git a/po/bn.po b/po/bn.po index aac91ba950..8a2115d838 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-05 10:27+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali \n" +"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bn\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.0-dev\n" @@ -68,7 +68,7 @@ msgstr "টেবিলের মন্তব্য সমূহ:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "স্তম্ভ" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "এর সংযোগ" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "প্রাথমিক" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "না" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -265,18 +265,18 @@ msgstr "ডাটাবেইজ %1$s টি %2$s এ অনুলিপি হ msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -"phpMyAdmin কনফিগারেশন সংরক্ষন ব্যবস্থা কার্যকর নয়। কেন জানার জন্য ক্লীক করুন %shere%" -"s।" +"phpMyAdmin কনফিগারেশন সংরক্ষন ব্যবস্থা কার্যকর নয়। কেন জানার জন্য ক্লীক করুন %shere" +"%s।" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "টেবল" @@ -289,7 +289,7 @@ msgid "Rows" msgstr "সারির #" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "আকার" @@ -384,9 +384,9 @@ msgstr "অবস্থা" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -582,15 +582,15 @@ msgstr "জ্যামিতি যোগ কর" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -631,8 +631,8 @@ msgstr "সম্পুর্ন ইনর্সাট" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "সম্ভবত আপনি একটি বিশাল ফাইল আপলোড করতে চাচ্ছেন। অনুগ্র্রহ করে %sdocumentation%s " "দেখে এই সমস্যা সমাধানের চেষ্টা করুন।" @@ -718,7 +718,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "পিছনে" @@ -741,7 +741,7 @@ msgid "General Settings" msgstr "সাধারন সেটিংস" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "পাসওয়ার্ড পরিবর্তন" @@ -816,7 +816,7 @@ msgstr "সংস্করন সম্পর্কিত তথ্য:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "সহায়িকা" @@ -1099,7 +1099,7 @@ msgstr "ইনডেক্স্ যোগকর" msgid "Edit Index" msgstr "ইনডেক্স সম্পাদনা" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "%s স্বম্ভ ইনডেক্সে যোগ কর" @@ -1134,7 +1134,7 @@ msgstr "আপনাকে অন্তত একটি স্বম্ভ য #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1167,12 +1167,12 @@ msgstr "হোষ্ট নামটি শুন্য!" msgid "The user name is empty!" msgstr "ব্যাবহারকারী নামটি শুন্য!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "পাসওয়ার্ডটি শুন্য!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "পাসওর্য়াডগুলো এক নয়!" @@ -1374,7 +1374,7 @@ msgstr "সিরিজে অন্তত একটি চলক যোগ ক #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1661,7 +1661,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1874,7 +1874,7 @@ msgstr "অনুসন্ধান বক্সটি দেখাও" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2145,7 +2145,7 @@ msgstr "প্রতিটি পয়েন্টের বিষয়" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "উপেক্ষা" @@ -2346,7 +2346,7 @@ msgstr "স্তম্ভ খোলা বন্ধ করতে চাইল #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "সব দেখাও" @@ -2456,7 +2456,7 @@ msgstr "ইনডেক্স প্যানেল" msgid "Show hidden navigation tree items." msgstr "চলাচল ফ্রেইমে লোগো দেখাও" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main panel" @@ -2963,16 +2963,16 @@ msgid "Delete" msgstr "মুছ" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3111,7 +3111,7 @@ msgid "During current session" msgstr "বর্তমান ভুলটি এড়িয়ে যাও" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3515,8 +3515,8 @@ msgstr "আপনার SQL অনুসন্ধানটি সফলভাব #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "এই ভিউটির অন্তত পক্ষে এক সারি তথ্য রয়েছে। অনুগ্রহ করে %sdocumentation%s দেখুন।" @@ -3552,6 +3552,7 @@ msgstr "নিবার্চিত গুলো নিয়ে:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3567,12 +3568,12 @@ msgstr "পরিবর্তন" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3761,7 +3762,7 @@ msgid "" msgstr "ইনডেক্স %1$s এবং %2$s এক সমান মনে হয় এবং যে কোন একটি মুছে ফেলুন।" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "সার্ভার" @@ -3776,11 +3777,11 @@ msgstr "দেখা" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3796,7 +3797,7 @@ msgstr "গঠন" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3822,9 +3823,9 @@ msgstr "ইনর্সাট" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "অধিকারসমূহ" @@ -3886,9 +3887,9 @@ msgid "Central columns" msgstr "টেক্সএরিয়া স্তম্ভ" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "ডাটাবেইজ" @@ -4008,7 +4009,7 @@ msgid "Recent" msgstr "পূর্বাবস্থায়" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4089,7 +4090,7 @@ msgstr "গুছানো" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4457,16 +4458,16 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"একটি ছোট দশমিক-পয়েন্টের অনুমোদিত মান হল -৩.৪০২৮২৬৪৬৬E+৩৮ থেকে -১.১৭৫৪৯৪৩৫১E-" -"৩৮, ০ এবং ১.১৭৫৪৯৪৩৫১E-৩৮ থেকে ৩.৪০২৮২৬৪৬৬E+৩৮" +"একটি ছোট দশমিক-পয়েন্টের অনুমোদিত মান হল -৩.৪০২৮২৬৪৬৬E+৩৮ থেকে " +"-১.১৭৫৪৯৪৩৫১E-৩৮, ০ এবং ১.১৭৫৪৯৪৩৫১E-৩৮ থেকে ৩.৪০২৮২৬৪৬৬E+৩৮" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "একটি double-precision দশমিক পয়েন্ট হল -১.৭৯৭৬৯৩১৩৪৮৬২৩১৫৭E+৩০৮ থেকে - " @@ -4745,7 +4746,7 @@ msgstr "সবোর্চ্চ: %s%s" msgid "MySQL said: " msgstr "MySQL বলেছে: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL এর ব্যাখা" @@ -4757,7 +4758,7 @@ msgstr "SQL এর ব্যাখা এড়িয়ে যাও" msgid "Without PHP Code" msgstr "পিএইছপি কোড ছাড়া" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "পিএইছপি কোড তৈরী কর" @@ -4872,13 +4873,13 @@ msgstr "বর্ণনা" msgid "Use this value" msgstr "এই মানটি ব্যবহার কর" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5291,7 +5292,7 @@ msgid "Set value: %s" msgstr "মান সেট কর:%s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "স্বাভাবিক মান ফিরিয়ে আন" @@ -5405,22 +5406,22 @@ msgstr "" #: libraries/config/ServerConfigChecks.class.php:419 #, fuzzy, php-format #| msgid "" -#| "If using cookie authentication and %sLogin cookie store%s is not 0, %" -#| "sLogin cookie validity%s must be set to a value less or equal to it." +#| "If using cookie authentication and %sLogin cookie store%s is not 0, " +#| "%sLogin cookie validity%s must be set to a value less or equal to it." msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." msgstr "" -"যদি কুকি প্রমাণীকরন ব্যবহার করেন এবং %sLogin cookie store%s যদি ০ না হয়, %" -"sLogin cookie validity%s 'র মান অবশ্যই এর থেকে কম বা সমান এ সেট করতে হবে।" +"যদি কুকি প্রমাণীকরন ব্যবহার করেন এবং %sLogin cookie store%s যদি ০ না হয়, " +"%sLogin cookie validity%s 'র মান অবশ্যই এর থেকে কম বা সমান এ সেট করতে হবে।" #: libraries/config/ServerConfigChecks.class.php:426 #, fuzzy, php-format #| msgid "" -#| "If you feel this is necessary, use additional protection settings - %" -#| "shost authentication%s settings and %strusted proxies list%s. However, IP-" -#| "based protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#| "If you feel this is necessary, use additional protection settings - " +#| "%shost authentication%s settings and %strusted proxies list%s. However, " +#| "IP-based protection may not be reliable if your IP belongs to an ISP " +#| "where thousands of users, including you, are connected to." msgid "" "If you feel this is necessary, use additional protection settings - %shost " "authentication%s settings and %strusted proxies list%s. However, IP-based " @@ -5726,23 +5727,35 @@ msgstr "কোন টেবলে প্রবেশকালে প্রর্ msgid "Default table tab" msgstr "সার্ভারের স্বাভাবিক ট্যাব" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "টেবল এবং স্তম্ভের নামা backquotes দ্বারা আবদ্ধ কর" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "টেবল এবং স্তম্ভের নামা backquotes দ্বারা আবদ্ধ কর" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "টেবল গঠনের কার্যাবলী লুকানো থাকবে।" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "টেবল গঠনের কার্যাবলী লুকাও" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "সার্ভারের তালিকা ড্রপ ডাউনের পরিবর্তে একটি তালিকা হিসাবে দেখাবে" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "সার্ভারের তালিকা একটি তালিকার মত দেখাবে" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5750,49 +5763,49 @@ msgstr "" "টেবল রক্ষণাবেক্ষনের কাজগুলো অকার্যকর কর, যেমন ডাটাবেইজের নির্বাচিত টেবলগুলো " "অপটিমাইজ বা মেরামত করা।" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "অনেকগুলো টেবল এক সাথে রক্ষণাবেক্ষণ অকার্যকর" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "একটি স্ক্রীপট চলার সময় (সেকেন্ডে)নির্ধারন করুন ([kbd]০[/kbd] সীমাহীন)।" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "সম্পাদনের সর্বোচ্চ সময়" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s স্টেটমেন্ট যোগ কর" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "ফাইল এর মত সংরক্ষন" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "ফাইলের বর্ণরাশি" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "গঠন" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "সংকোচন" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5802,60 +5815,60 @@ msgstr "সংকোচন" msgid "Put columns names in the first row" msgstr "স্তম্ভের নাম প্রথম রোতে দাও" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "স্তম্ভ ঘেরার জন্য" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "স্তম্ভ এস্কেপডের উপকরণ" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "নাল প্রতিস্থাপিত হবে" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "স্তম্ভের CRLF বর্ণ মুছ" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "স্তম্ভ শেষ হবে" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "লাইন শেষ হবে" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel সংস্করন" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "ডাটাবেইজের নামের নকশা" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "সার্ভারের নামের নকশা" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "টেবলের নামের নকশা" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5864,139 +5877,139 @@ msgstr "টেবলের নামের নকশা" msgid "Dump table" msgstr "টেবল স্তুপ কর" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "টেবিলের শিরোনামসহ" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "টেবিলের শিরোনাম" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "টেবিলের শিরোনাম চলমান" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "লেবেল কী" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME ধরন" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "সর্ম্পকসমূহ" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "রফতানী পদ্ধতী" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "সার্ভারে সংরক্ষন কর" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "পূর্বের ফাইলটিতে রাখ" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "ফাইল নামের নকশা মনে রাখবে" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT যোগ কর" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "টেবল এবং স্তম্ভের নামা backquotes দ্বারা আবদ্ধ কর" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL উপযুক্ততার ধরন" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE পছন্দ:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "তৈরী/আপডেট/পরীক্ষার তারিখ" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "delayed inserts ব্যবহার কর" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "foreign key পরীক্ষা অকার্যকর কর" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "ভিউ টেবিলের মত রফতানী করা হচ্ছে" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s যোগ কর" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "BLOB এর জন্য hexadecimal ব্যবহার কর" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "ignore inserts ব্যাবহার কর" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "তথ্য প্রবেশ করানোর সময় ব্যবহৃত বাক্য" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "প্রস্তুতকৃত অনুসন্ধানের সর্বোচ্চ দৈর্ঘ" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "রফাতানীর ধরন" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "লেনদেন এ রফতানী সংযুক্ত কর" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "UTC গঠনে রফতানী সময়" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "phpMyAdmin ব্যাবহারের জন্য নিরাপদ সংযোগে বাধ্য কর।" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "SSL সংযোগে বাধ্য কর" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -6004,142 +6017,142 @@ msgstr "" "ফরেন কী ড্রপডাউনের বিষয়গুলো গুছানোর পদ্ধতি [kbd]content[/kbd] হলো তথ্য এবং [kbd]id" "[/kbd] কী মান।" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "ফরেন কী ড্রপডাউনের পদ্ধতি" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "যদি অল্প সংখ্যক বিষয় থাকে তবে ড্রপডাউন ব্যবহৃত হবে।" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Foreign key সীমা" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "ব্রাউজ পদ্ধতি" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "ব্রাউজ পদ্ধতি পরিবর্তন।" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "স্বাভাবিক অপশনগুলো পরিবর্তন।" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "কমা দ্বারা আলাদা করা মান" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "উন্নয়নকারী" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "phpMyAdmin উন্নয়নকারীদের জন্য সেটিংস।" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "সম্পাদনা পদ্ধতি" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "সম্পাদনা পদ্ধতি পরিবর্তন।" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "রফতানী সর্ম্পকিত স্বাভাবিক" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "স্বাভাবিক রফতানী অপশনগুলো পরিবর্তন।" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "বিষয়াদি" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "সাধারন" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "কিছু সাধারনভাবে ব্যবহৃত অপশন নির্ধারন করুন।" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "আমদানি সর্ম্পকিত স্বাভাবিক" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "স্বাভাবিক প্রচলিত আমদানি অপশন পরিবর্তন।" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "আমদানি /রফতানী" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "আমদানি এবং রফতানী ডিরেক্টরি এবং সংকোচন নির্ধারন করুন।" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "ডাটাবেইজ দেখার অপশন।" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "চলাচলের ফ্রেম" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "চলাচলের ফ্রেম দেখার বিষয়গুলো পরিবর্তন।" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "সার্ভার" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "সার্ভারের প্রর্দশন অপশনগুলো।" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "টেবল প্রর্দশনের অপশনগুলো।" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "প্রধান ফ্রেম" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "মাইক্রোসফট অফিস" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "অন্যান্য প্রধান সেটিংস" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "যে সেটিংগুলো অন্য কোথাও খাপ খায় না।" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "পাতার শিরোনাম" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6147,19 +6160,19 @@ msgstr "" "ব্রাউজারের শিরোনামের লেখাটি দিন। বিশেষ মান নেওয়ার জন্য কি ব্যবহার করতে হবে " "জানার জন্য [doc@cfg_TitleTable]documentation[/doc] দেখুন।" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "অনুসন্ধান উইন্ডো" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "অনুসন্ধান উইন্ডো পরিবর্তন করুন" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "নিরাপত্তা" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6167,37 +6180,37 @@ msgstr "" "মনে রাখবেন phpMyAdmin শুধুই একটি ব্যবহারকারীর সঙ্গে সংযোগ উপায় এবং এটি কোনভাবেই " "MySQL এর বিষয়াদি নির্দিষ্ট করে না।" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "প্রাথমিক সেটিংস" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "প্রমাণীকরণ" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "প্রমানীকরণ সেটিংস।" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "সার্ভার করফিগারেশন" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "উন্নত সার্ভার কনফিগারেশন, এগুলো কি তা না জেনে পরিবর্তন করবেন না।" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "সার্ভার সংযোগের তথ্যগুলো দিন।" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "কনফিগারেশন মজুদ ব্যবস্থা" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6206,118 +6219,118 @@ msgstr "" "অন্যান্য অতিরিক্ত সুবিধাদির জন্য phpMyAdmin কনফিগারেশন মজুদ ব্যবস্থা কনফিগার করন, " "সহায়িকার [doc@linked-tables]phpMyAdmin configuration storage[/doc]দেখুন।" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "পরিবর্তন ট্রেকিং" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" "ডাটাবেইজের পরিবর্তন ট্রেকিং করার জন্য phpMyAdmin কনফিগারেশন মজুদ ব্যবস্থা প্রয়োজন।" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "রফতানী অপশন পরিবর্তন" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "আমদানির স্বাভাবিক বিষয়গুলো পরিবর্তন" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "চলাচলের ফ্রেম পরিবর্তন" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "প্রধান ফ্রেম পরিবর্তন" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL অনুসন্ধান" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL অনুসন্ধান বক্স" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "পরিবর্তিত সংযোগগুলো SQL অনুসন্ধান বক্সে দেখাচ্ছে।" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL অনুসন্ধান সেটিংস।" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "আরম্ভ কর" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "প্রথম পাতাটি পরিবর্তন কর।" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "ডাটাবেইজ সার্ভার" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "ডাটাবেইজ গঠনের সাথে বিশদ কি দেখাবে তা পছন্দ করুন (টেবলের তালিকা)।" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "টেবলের জন্য টেবলের গঠন" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "টেবল গঠনের সেটিংস (স্তম্ভের তালিকা)।" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "ট্যাবসমূহ" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "ট্যাবগুলো কিভাবে কাজ করবে পছন্দ করুন।" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "সর্ম্পকের রূপরেখা প্রদর্শন কর" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "পাতার আকার" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "অক্ষরের ক্ষেত্র" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "অক্ষর দেওয়ার ক্ষেত্রটি পরিবর্তন করুন।" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! লেখা" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "স্বাভাবিক অপশনগুলো পরিবর্তন" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "সর্তকতা" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "phpMyAdmin এর দেখানো কিছু সতর্কবার্তা অকার্যকর কর।" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6325,15 +6338,15 @@ msgstr "" "আমদানি রফতানীর জন্য [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] সংকুচন " "কার্যকর কর।" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "জিজিপ" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv'র জন্য অতিরিক্ত প্যারামিটার" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6341,11 +6354,11 @@ msgstr "" "যদি কার্যকর করা হয় phpMyAdmin multiple-statement অনুসন্ধানগুলো গননা করবে যদি কোন " "একটি অনুসন্ধান ব্যার্থও হয়।" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "multiple-statement এর ভুল উপেক্ষা কর" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6354,28 +6367,28 @@ msgstr "" "নিধারিত শেষ হয়ে এলে আমদানি বন্ধ করার অনুমোদন। এটা বড় ফাইল আমদানির একটি ভাল " "উপায়, যদিও এটি কাজ বন্ধ রাখতে পারে।" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "আংশিক আমদানি: বাধা অনুমোদিত" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "foreign key পরীক্ষা অকার্যকর কর" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "ভুল হলেও ইনর্সাট বাতিল করবে না" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "টেবলের তথ্য ফাইল থেকে প্রতিস্থাপন কর" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6383,67 +6396,67 @@ msgstr "" "স্বাভাবিক গঠন: মনে রাখবেন এই তালিকাটি স্থানের উপর নির্ভরশীল (ডাটাবেইজ,টেবল)) " "এবং শুধু SQL কার্যকর।" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "আমদানিকৃত ফাইলের গঠন" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "LOCAL কীওর্য়াড ব্যবহার কর" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "প্রথম সারিতে স্তম্ভের নাম" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "খালি সারি আমদানি করো না" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "মুদ্রা আমদানি ($৫.০০ কে ৫.০০)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "সঠিক দশমিকে শতকরা আমদানি (১২.০০% কে .১২)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "আরম্ভ থেকে এড়িয়ে যাওয়ার অনুসন্ধানের সংখ্যা।" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "আংশিক আমদানি: অনুসন্ধান উপেক্ষা কর" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "শুন্য মানের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT) ব্যবহার করবে না" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "স্লাইডারের প্রাথমিক অবস্থা" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "এক সংগে কতগুলো রো ইনসার্ট করবে।" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "ইনর্সাটকৃত রো'র সংখ্যা" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "সংখ্যা নয় এমন স্তম্ভে প্রদর্শনের জন্য সবোর্চ্চ অক্ষরের সংখ্যা।" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "স্তম্ভের অক্ষর সীমা" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6454,11 +6467,11 @@ msgstr "" "অনেকগুলো সার্ভারে সংযুক্ত থাকে তখন অন্যান্য সার্ভার থেকে লগাউট হতে ভুলে যাওয়া সহজ " "হতে পারে।" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "লগ আউটের সময় সব কুকি মুছে ফেলবে" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6469,11 +6482,11 @@ msgid "" msgstr "" "নির্ধারন করুন পূর্বের লগইন পুনরায় ব্যবহার করা হবে অথবা কুকিহীন প্রমাণীকরণ পদ্ধতি।" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "ব্যবহারকারীর নাম পুনরায় ব্যবহার" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6484,48 +6497,48 @@ msgstr "" "স্বাভাবিকভাবে ০ যার মানে হলো এটা শুধুমাত্র বর্তমান সেশসনের জন্য, এবং ব্রাউজার বন্ধ " "করা হলে এটা মুছে ফেলা হবে। অবিশ্বস্ত পরিবেশের জন্য এটা উপযোগী।" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "লগইন কুকি মজুদ" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "একটি লগইন কুকি কতক্ষন (সেকেন্ডে) কার্যকর থাকবে তা নির্ধারণ করুন।" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "লগইন কুকির বৈধতা" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "LONGTEXT স্তম্ভের জন্য টেক্সটএরিয়া দ্বিগুন কর।" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEXT এর জন্য বড় টেক্সটএড়িয়া" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "SQL অনুসন্ধান দেখানোর জন্য সর্বোচ্চ সংখ্যক বর্ণের সংখ্যা।" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "দেখানোর জন্য SQL এর সর্বোচ্চ দৈর্ঘ" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "ব্যবহারকারী উচ্চতর মান নির্ধারন করতে পারবে না" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "টেবল তালিকায় প্রদর্শনের জন্য টেবলের সর্বোচ্চ সংখ্যা।" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "সর্বোচ্চ সংখ্যক ডাটাবেইজ" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " @@ -6535,23 +6548,23 @@ msgid "" "the navigation tree." msgstr "চলাচলের ট্রির প্রতি পাতায় কতগুলো জিনিস দেখাবে।" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum items in branch" msgid "Maximum items on first level" msgstr "শাখায় জিনিসের সর্বোচ্চ সংখ্যা" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "চলাচলের ট্রির প্রতি পাতায় কতগুলো জিনিস দেখাবে।" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "শাখায় জিনিসের সর্বোচ্চ সংখ্যা" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6559,19 +6572,19 @@ msgstr "" "ব্রাউজিংয়ের সময় প্রর্দশিত ফলাফলে রো'র সংখ্যা। এতে যদি অনেক বেশী রো থাকে " "\"পূর্ববর্তী \" এবং \"পরবর্তী\" দেখাবে।" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "প্রদর্শনের জন্য রো'র সবোর্চ্চ সংখ্যা" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "টেবল তালিকায় প্রদর্শনের জন্য টেবলের সর্বোচ্চ সংখ্যা।" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "টেবলের সর্বোচ্চ সংখ্যা" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6579,41 +6592,41 @@ msgstr "" "একটি স্ক্রীপটের জন্য নির্ধারিত বাইটের সংখ্যা যেমন [kbd]৩২মে[/kbd] ([kbd]০[/kbd]" "কোন সীমা নির্দষ্ট না করার জন্য।" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "মেমরীর সীমা" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show databases navigation as tree" msgstr "চলাচল ফ্রেইমে লোগো দেখাও" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "চলাচল ফ্রেইমে লোগো দেখাও।" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "লোগো দেখাও" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "চলাচলের ফ্রেইমে যেখানে লোগোটি থাকবে তার URL।" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "লোগো সংযোগের URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6621,139 +6634,139 @@ msgstr "" "সংযুক্ত পাতাটি একটি নতুন উইন্ডোতে ([kbd]new[/kbd]) খোল বা প্রধান উইন্ডোটিতে ([kbd]" "main[/kbd]) খোল।" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "লোগো সংযোগের লক্ষ্য" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "পছন্দের সার্ভারটি উপরের বামদিকের কোণার ফ্রেইমে দেখাও।" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "সার্ভার নির্বাচন দেখাও" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "দ্রুত প্রবেশের আইকনের লক্ষ্য" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "দ্রুত প্রবেশের আইকনের লক্ষ্য" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "টেবল ফিল্টার বক্সে প্রদর্শনের জন্য নুন্যতম সংখ্যা" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "ফিল্টার বক্সে প্রদর্শনের জন্য বিষয়ের নুন্যতম সংখ্যা" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "ডাটাবেইজ ফিল্টার বক্সে প্রদর্শনের জন্য নুন্যতম ডাটাবেইজ সংখ্যা" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "চলাচলের ট্রিতে বিষযগুলো দলবদ্ধ কর।" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "ট্রিতে বিষযগুলো দলবদ্ধ কর" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "বিভিন্ন পর্যায়ে ডাটাবেইজ ট্রি পৃথককারী ট্রিং।" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "ডাটাবেইজ ট্রি পৃথককারী" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "বর্ণ যার দ্বারা টেবলগুলো ট্রি'র বিভিন্ন ক্ষেত্রে পৃথক হবে।" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "টেবল ট্রি পৃথককারী" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "টেবল ট্রির সর্বোচ্চ গভীরতা" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "মাউস কার্সরের নীচে সার্ভার চিহ্নিত কর।" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "চিহ্নিতকরন কাযর্কর" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "টেবল চলাচলের বার" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "সম্প্রতি ব্যবহৃত টেবলের সর্বো্চ্চ সংখ্যা; অকার্যকর করার জন্য ০ নির্ধারন করুন।" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable." msgid "Maximum number of favorite tables; set 0 to disable." msgstr "সম্প্রতি ব্যবহৃত টেবলের সর্বো্চ্চ সংখ্যা; অকার্যকর করার জন্য ০ নির্ধারন করুন।" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "সম্প্রতি ব্যবহৃত টেবল" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "এগুলো সম্পাদনা, প্রতিলিপি এবং মুছা সংযোগ।" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "টেবলের রো সংযোগ কোথায় দেখাবে" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "টেবল এবং ডাটাবেইজের নাম সাজানোর জন্য স্বাভাবিক বিন্যাস ব্যবহার কর।" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "স্বাভাবিক বিন্যাস" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "শুধু আইকন, শুধু মাত্র টেক্সট বা উভয়ই ব্যবহার কর।" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "টেবল চলাচলের বার" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "HTTP স্থানান্তরের গতি বাড়ানোর জন্য জিজিপ আউটপুট বাফারিং ব্যবহার কর।" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "জিজিপ আউটপুট বাফারিং" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6761,19 +6774,19 @@ msgstr "" "[kbd]দক্ষ[/kbd]- যেমন স্তম্ভ যদি সময়,দিন, দিনসময়্ এবং সময়কাল হয় তবে অধমূখী অন্যথায় " "উর্দ্ধ মুখী।" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "গুছানোর স্বাভাবিক বিন্যাস" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "MySQL ডাটাবেইজে স্থীর সংযোগ ব্যবহার কর।" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "স্থীর সংযোগ" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6782,11 +6795,11 @@ msgstr "" "phpMyAdmin কনফিগারেশনের কোন একটি storage table পাওয়া না গেলে ডাটাবেইজের বিশদ " "গঠন যেখানে দেখানো হয় সেখানে প্রদর্শিত সর্তকতা অকার্যকর কর।" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6794,11 +6807,11 @@ msgstr "" "MySQL library এবং সার্ভরের পার্থক্য পাওয়া গেলে যে স্বাভাবিক সর্তক বার্তা প্রদর্শিত " "হয় তা অকার্যকর কর।" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "সার্ভার/লাইব্রেরীর পার্থক্যের জন্য সতর্ক বার্তা" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6806,27 +6819,27 @@ msgstr "" "যদি কোন টেবলের স্তম্ভের নামে MySQL এর রির্জাভড ওর্য়াড ব্যবহার করা হয় তবে গঠন " "পাতায় যে সর্তকবার্তা প্রদর্শন করা হয় তা অকার্যকর কর।" -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "MySQL এর রির্জাভড ওর্য়াড সর্তকতা" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "ম্যানু ট্যাব কিভাবে প্রদর্শন করবে" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "বিভিন্ন ধরনের কাজের সংযোগ কিভাবে প্রদর্শন করবে" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "BLOB এবং BINARY টেবল সম্পাদনা অ-অনুমোদিত।" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "বাইনারী স্তম্ভ সংরক্ষন কর" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6836,128 +6849,128 @@ msgstr "" "storage)লাগবে, অন্যথায় অনুসন্ধান হিস্টোরী দেখানোর জন্য JS-routines ব্যবহৃত হবে। " "( উইন্ডো বন্ধ করলে যা নষ্ট হয়ে যাবে)" -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "অনুসন্ধানের স্থায়ী হিস্টোরী" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "হিস্টোরীতে কতগুলো অনুসন্ধান থাকবে।" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "অনুসন্ধান হিস্টোরীর দৈর্ঘ্য" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "বর্ণরাশি পরিবর্তনে কোন ফাংশন ব্যবহৃত হবে তা নির্বাচন করুন।" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "রের্কডিং ইঞ্জিন" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "যখন টেবল ব্রাউজ করা হবে, টেবলের সজ্জা মনে রাখবে।" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "টেবলের সজ্জা মনে রাখবে" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "গুছানোর স্বাভাবিক বিন্যাস" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "প্রতি X cells শিরোনাম পুনরায় দেখাবে, [kbd]০[/kbd] এটি অকার্যকর করবে।" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "শিরোনাম পুনরাবৃত্তি" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "গ্রীড সম্পাদনা: trigger action" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "সর্ম্পক দেখানোর স্থম্ভ" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "সার্ভারের প্রর্দশন অপশনগুলো।" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "গ্রীড সম্পাদনা: সম্পাদনকৃত সব সেল একত্রে সংরক্ষন কর" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "সার্ভারে রফতানী সংরক্ষনের ডিরেক্টরী।" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "সংরক্ষনের ডিরেক্টরী" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "ব্যবহৃত না হলে থালি রাখ।" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "হোস্ট অনুমোদনের বিন্যাস" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "স্বাভাবিকভাবে থাকার জন্য খালি রাখুন।" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "হোস্ট অনুমোদনের নিয়ম" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "পাসওয়ার্ডবিহীন লগইনের অনুমোদন" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "রুট লগইনের অনুমোদন" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "সেশনের মান" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" "যথন এইছটিটিপি প্রমানীকরণ ব্যবহার হবে তখন প্রদর্শনের জন্য প্রাথমিক এইছটিটিপি " "প্রমানীকরণ নাম।" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP রাজ্য" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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 +6979,19 @@ msgstr "" "কনফিগ ফাইলের পথ [a@http://swekey.com]SweKey hardware authentication[/a] " "(ডকুমেন্ট রুটে পাওয়া যায়নি; সাম্ভাব্য: /etc/swekey.conf)।" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey কনফিগ ফাইল" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "ব্যবহারের জন্য প্রমাণীকরনের পদ্ধতী।" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "প্রমাণীকরণের ধরন" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6986,11 +6999,11 @@ msgstr "" "না করার জন্য খালি রাখুন [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" "a] সাহায্যের জন্য, দেখুন:[kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "বুকর্মাক টেবল" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6998,31 +7011,31 @@ msgstr "" "স্তম্ভের মন্তব্য/মাইমের ধরন না দেখানোর জন্য খালি রাখুন, দেখুন:[kbd]pma_column_info[/" "kbd]।" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "স্তম্ভ্ তথ্যের টেবল" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "সংকুচিত MySQL সার্ভারের সংযোগ।" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "সংকুচিত সংযোগ" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "সার্ভারে কিভাবে সংযোগ করবে, যদি না জানেন [kbd]tcp[/kbd] রাখেন।" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "সংযোগের ধরন" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "নিয়ন্ত্রক ব্যবহারকারীর পাসওর্য়াড" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -7030,11 +7043,11 @@ msgstr "" "একটি বিশেষ MySQL ব্যবহারকারী সীমিত অধিকার সহ কনফিগার করা হয়েছে, আরো তথ্যের জন্য " "দেখুন [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]।" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "নিয়ন্ত্রক ব্যবহারকারী" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -7042,11 +7055,11 @@ msgstr "" "কনফিগারেশন মজুদ (configuration storage) করার জন্য অন্য একটি হোস্ট; না থাকলে খালি " "রাখুন।" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "হোস্ট নিয়ন্ত্রন" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -7055,15 +7068,15 @@ msgstr "" "কনফিগারেশন মজুদ (configuration storage) করার জন্য অন্য একটি হোস্ট; না থাকলে খালি " "রাখুন।" -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "নিয়ন্ত্রন পোর্ট" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "ডাটাবেইজের regular expression (PCRE) মিলকরন লুকাও।" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7071,15 +7084,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA ব্যবহার অকার্যকর" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "ডাটাবেইজ লুকাও" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -7087,23 +7100,23 @@ msgstr "" "SQL অনুসন্ধানের হিস্টোরী সুবিধা দিতে না চাইলে খালি রাখুন, দেখুন: [kbd]pma_history[/" "kbd]।" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL অনুসন্ধানের হিস্টোরী টেবল" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "MySQL সার্ভারের হোস্ট নাম।" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "সার্ভরের হোস্ট নাম" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "লগআউট URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -7111,17 +7124,17 @@ msgstr "" "ডাটাবেইজে রক্ষিত টেবলের তথ্যের সংখ্যা সীমিত করন, পুরাতন তথ্য স্বয়ংক্রীয়ভাবে মুছে " "যাবে।" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "মজুদ করার জন্য সর্বো্চ্চ সংখ্যক টেবলের তথ্যের সংখ্য" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "সহায়ক এর অবস্থা দেখুন" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7132,13 +7145,13 @@ msgid "" msgstr "" "পিডিএফ গঠনের সমর্থন না দেওয়ার জন্য খালি রাখুন, দেখুন:[kbd]pma_pdf_pages[/kbd]।" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns 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__table_coords[/" @@ -7148,15 +7161,15 @@ msgid "" "pma__central_columns[/kbd]." msgstr "পিডিএফ গঠন সমর্থনের জন্য খালি রাখুন, দেখুন: [kbd]pma_table_coords[/kbd]।" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "পাসওর্য়াডহীন সংযোগের চেষ্টা কর।" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "পাসওর্য়াডহীন সংযোগ কর" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7168,29 +7181,29 @@ msgstr "" "শুধু ওগুলোর নাম দেন এবং শেষে[kbd]*[/kbd] ব্যবহার করুন alphabetical ভাবে সাজানোর " "জন্য।" -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "শুধু তালিকার ডাটাবেইজ দেখাও" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "খালি রাখুন যদি কনফিগ প্রমাণীকরণ ব্যবহার না করেন।" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "কনফিগ প্রমাণীকরণের পাসওর্য়াড" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "পিডিএফের গঠন: টেবলের পাতা" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7200,20 +7213,20 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a] দেখুন। সমর্থন না করলে খালি রাখুন। দেখুন: [kbd]" "phpmyadmin[/kbd]।" -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "ডাটাবেইজের নাম" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "যে পোর্টে MySQL সার্ভার শুনছে, স্বাভাবিকটির জন্য খালি রাখুন।" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "সার্ভারের পোর্ট" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7221,11 +7234,11 @@ msgstr "" "যদি টেবলের পছন্দগুলো বি্ভিন্ন সেশনে \"persistent\" স্থায়ীভাবে রাখতে না চান খালি " "রাখুন, দেখুন: [kbd]pma_table_uiprefs[/kbd]।" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" 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, " @@ -7237,13 +7250,13 @@ msgstr "" "যদি টেবলের পছন্দগুলো বি্ভিন্ন সেশনে \"persistent\" স্থায়ীভাবে রাখতে না চান খালি " "রাখুন, দেখুন: [kbd]pma_table_uiprefs[/kbd]।" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "চলকসমূহ" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7251,11 +7264,11 @@ msgstr "" "না করার জন্য খালি রাখুন [a@http://wiki.phpmyadmin.net/pma/relation]relation-" "links[/a]সাহায্যের জন্য, দেখুন:[kbd]pma__relation[/kbd]।" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "আন্তসর্ম্পক টেবল" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7263,43 +7276,43 @@ msgstr "" "উদাহরণের জন্য [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "authentication types [/a] দেখুন।" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "সাইনঅন সেশনের নাম" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "সাইনঅন URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "কোন সকেটে MySQL সার্ভার শুনছে, স্বাভাবিকটির জন্য।" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "সার্ভারের সকেট" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "MySQL সার্ভারে সংযোগের জন্য SSL কার্যকর কর।" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL ব্যবহার কর" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 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:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "পিডিএফের গঠন: table coordinates" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7307,11 +7320,11 @@ msgstr "" "স্তম্ভ বর্ণনার টেবল, সমর্থন দিতে না চাইলে খালি রাখুন; দেখুন: [kbd]pma_table_info[/" "kbd]।" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "স্তম্ভের টেবল দেখাও" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7319,11 +7332,11 @@ msgstr "" "যদি টেবলের পছন্দগুলো বি্ভিন্ন সেশনে \"persistent\" স্থায়ীভাবে রাখতে না চান খালি " "রাখুন, দেখুন: [kbd]pma_table_uiprefs[/kbd]।" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "UI পছন্দ রাখর টেবল" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7331,11 +7344,11 @@ msgstr "" "যখন একটি ডাটাবেইজ তৈরী হবে তখন একটি DROP DATABASE IF EXISTS লেখা লগের প্রথম " "লাইনে যুক্ত হবে।" -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "DROP DATABASE যোগ কর" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7343,11 +7356,11 @@ msgstr "" "যখন লগ একটি টেবল তৈরী হবে তখন একটি DROP TABLE IF EXISTS লেখা লগের প্রথম লাইনে " "যুক্ত হবে।" -#: libraries/config/messages.inc.php:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "DROP TABLE যোগ কর" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7355,21 +7368,21 @@ msgstr "" "যখন একটি ভিউ তৈরী হবে তখন একটি DROP VIEW IF EXISTS লেখা লগের প্রথম লাইনে যুক্ত " "হবে।" -#: libraries/config/messages.inc.php:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "DROP VIEW যোগ কর" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "একটি statements এর তালিকা তৈরী করুন যা সংস্করন তৈরীর জন্য স্বয়ংক্রীয় ভাবে ব্যবহৃত " "হবে।" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "ট্রেকের জন্য Statements" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7377,21 +7390,21 @@ msgstr "" "SQL অনুসন্ধান ট্রেকিং সমর্থন না দেওয়ার জন্য খালি রাখুন, দেখুন: [kbd]pma_tracking[/" "kbd]।" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL অনুসন্ধান ট্রেকিং টেবল" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "ট্রেকিং ব্যবস্থা টেবল এবং ভিউ এর সংস্করন স্বয়ংক্রীয় ভাবে তৈরী করবে।" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "স্বয়ংক্রীয়ভাবে সংস্করন তৈরী কর" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7399,33 +7412,33 @@ msgstr "" "ব্যবহারকারীর নির্ধারন (preferences) ডাটাবেইজে মজুদ করতে না চাইলে খালি রাখুন, " "দেখুন:[kbd]pma_userconfig[/kbd]।" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "ব্যবহারকারীর নির্ধারন (preferences) মজুদ করার টেবল" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "টেবল ব্যবহার" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "ব্যাবহারকারীর দলের টেবল" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7433,15 +7446,15 @@ msgstr "" "ব্যবহারকারীর নির্ধারন (preferences) ডাটাবেইজে মজুদ করতে না চাইলে খালি রাখুন, " "দেখুন:[kbd]pma_userconfig[/kbd]।" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "কনফিগ প্রমাণীকরণের জন্য ব্যবহারকারী" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7449,21 +7462,21 @@ msgstr "" "ব্যবহারকারীর জন্য সার্ভারের সহজবোধ্য বিবরণ। হোস্ট নামটি দেখাবার জন্য খালি রাখতে " "পারেন।" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "সার্ভারের কথ্য নাম" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "সবগুলো রো প্রর্দশন করার অনুমতি" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7473,67 +7486,67 @@ msgstr "" "কারন পাসওয়ার্ডটি কনফিগারেশন ফাইলে লেখা আছে; এটা একই কমান্ড সরাসরি কার্যকর করার " "ক্ষমতা খর্ব করে না।" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "পাসওর্য়াড পরিবর্তনের ফর্ম দেখাও" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "ডাটাবেইজ তৈরীর ফর্ম দেখাও" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "সব টেবলের প্রস্তুত সময় প্রর্দশনের স্তম্ভ দেখাবে বা লুকাবে।" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "প্রস্তুতের সময় দেখাও" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "সব টেবলের আপডেট সময় প্রর্দশনের স্তম্ভ দেখাবে বা লুকাবে।" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "সর্বশেষ আপডেটের সময় দেখাও" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "সব টেবলের সর্বশেষ পরীক্ষার সময় প্রর্দশনের স্তম্ভ দেখাবে বা লুকাবে।" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "সর্বশেষ পরীক্ষার সময় দেখাও" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "সম্পাদনা/ইনর্সাটের সময় টাইপ ফিল্ড দেখাবে কিনা তা নির্ধারন করুন।" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "ক্ষেত্রের ধরন দেখাও" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "ফাংশন ক্ষেত্রটি সম্পাদনা/ইনর্সাট অবস্থায় দেখাবে।" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "ফাংশন ক্ষেত্র দেখাও" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "আভাস দেখাবে অথবা না।" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "আভাস দেখাও" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7541,58 +7554,58 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] আউটপুট সংযোগ " "দেখাও।" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "phpinfo() সংযোগ দেখাও" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "MySQL সার্ভরের বিশদ তথ্য দেখাও" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "নিধার্রণ করুন phpMyAdmin দ্বারা প্রস্তুতকৃত SQL অনুসন্ধান প্রদর্শন করবে কিনা।" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "SQL অনুসন্ধান দেখাও" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "পেশ করার পর অনুসন্ধান বক্সটি পর্দায় থাকবে কিনা।" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "অনুসন্ধান বক্সটি রাখ" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "ডাটাবেইজ এবং টেবলের পরিসংখ্যান দেখাও (জায়গা ব্যবহৃত হবে)।" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "পরিসংখ্যান দেখাও" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "ব্যবহৃত টেবল চিহ্নিত কর এবং লক্ড টেবল সহ ডাটাবেইজগুলো দেখাবার ব্যবস্থা কর।" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "লকড টেবল এড়িয়ে যাও" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "যদি Suhosin পাওয়া যায় তবে একটি সর্তক বার্তা প্রদর্শন করবে।" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin সতর্কবার্তা" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7605,13 +7618,13 @@ msgstr "" "যদি কোন টেবলের স্তম্ভের নামে MySQL এর রির্জাভড ওর্য়াড ব্যবহার করা হয় তবে গঠন " "পাতায় যে সর্তকবার্তা প্রদর্শন করা হয় তা অকার্যকর কর।" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "লগইন কুকির বৈধতা" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7619,11 +7632,11 @@ msgstr "" "সম্পাদনার সময়, টেক্সটএরিয়া (স্তম্ভ) আকৃতি এই মানটি SQL অনুসন্ধানের টেক্সটএরিয়া (*২) " "এবং অনুসন্ধান উইন্ডো (*১.২৫) প্রভাব ফেলবে।" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "টেক্সএরিয়া স্তম্ভ" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7631,31 +7644,31 @@ msgstr "" "সম্পাদনের সময়, টেক্সটএরিয়ার আকৃতি (রো) এই মানটি SQL অনুসন্ধানের টেক্সটএরিয়া (*২) " "এবং অনুসন্ধান উইন্ডো (*১.২৫) প্রভাব ফেলবে।" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "টেক্সটএরিয়ার রোসমূহ" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "একটি ডাটাবেইজ নিবার্চন করা হলে ব্রাউজার উইন্ডোর শিরোনাম।" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "কিছু নির্বাচিত না থাকলে ব্রাউজার উইন্ডোর শিরোনাম।" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "স্বাভাবিক শিরোনাম" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "একটি সার্ভার নিবার্চন করা হলে ব্রাউজারের শিরোনাম।" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "একটি টেবল নির্বাচন করা হবে ব্রাউজার উইন্ডোর শিরোনাম।" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7666,27 +7679,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "বিশ্বস্ত প্রক্সির তালিকা IP allow/deny এর জন্য" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "সার্ভরের আপলোড ডিরেক্টরি যেখানে আমদানির ফাইল রাখা যাবে।" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "আপলোড ডিরেক্টরি" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "সমস্ত ডাটাবেইজের ভিতর খোঁজার অনুমতি।" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "ডাটাবেইজে খুঁজার ব্যবহার কর" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7694,26 +7707,26 @@ msgstr "" "যদি অকার্যকর থাবে, ব্যবহারকারী নীচের কোন অপশন সেট করতে পারেব না, ডান দিকের " "চেকবক্স পর্যন্ত।" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "সেটিংসে উন্নয়নকারী টেবটি কার্যকর করুন" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "সর্বশেষ সংস্করনের জন্য খুঁজে দেখ" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "নতুন কোন সংস্করন আছে কিনা তা phpMyAdmin page এ পরীক্ষা করে দেখবে।" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7721,30 +7734,30 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "ব্যাবহারকারীর নাম" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "পাসওর্য়াড" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7752,52 +7765,52 @@ msgstr "" "জিপ [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] সংকোচন আমদানি " "রফতানীর জন্য কার্যকর কর।" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "জিপ" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "ভুল সর্ম্পকিত প্রতিবেদন দাখিল কর" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL query" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7819,44 +7832,44 @@ msgstr "HTTP প্রমাণীকরণ" msgid "Signon authentication" msgstr "সাইনঅন প্রমাণীকরণ" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV LOAD DATA ব্যবহার করছে" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "ওপেন অফিসের স্প্রেডসীট" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "দ্রুত" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "পরিবর্তন" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "ডাটাবেইজ রফতানী অপশন" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "মাইক্রোসফট এক্সেলের জন্য CSV" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "মাইক্রোসফট ওর্য়াড ২০০০" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "ওপেন অফিস টেক্সট" @@ -8085,20 +8098,20 @@ msgstr "বাফার করা হয়নি এমন ফলাফলের #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "পাসওর্য়াড নাই" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "পাসওর্য়াড:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "আবার দিন:" @@ -8235,8 +8248,8 @@ msgstr "@TABLE@ হবে টেবলের নাম" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "এই মানটি %1$sstrftime%2$s ভাবে অনুবাদিত হবে, আপনি সময় গঠনের স্ট্রিং ব্যবহার করতে " "পারেন। এখন এই রুপান্তরটি হবে:%3$s। অন্যান্য লেখা ঠিকই থাকবে। %4$sFAQ%5$s এ বিশদ " @@ -8787,8 +8800,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "নথিপত্রাদি এবং PBXT'র অন্যান্য তথ্য %sPrimeBase XT Home Page%s এ পাওয়া যাবে।" @@ -9261,7 +9274,7 @@ msgstr "লগ আউট" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin সহায়িকা" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "চলাচল প্যানেল রিলোড" @@ -9925,8 +9938,8 @@ msgstr "%s এ স্বাগতম" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "সম্ভবত আপনি কোন কনফিগারেশন ফাইল তৈরী করেন নাই। আপনি %1$ssetup script%2$s " "ব্যবহার করে একটি তৈরী করতে পারেন।" @@ -10156,7 +10169,7 @@ msgstr "প্রথম সারিতে স্তম্ভের নাম #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "হোষ্ট:" @@ -11187,22 +11200,22 @@ msgstr "" "নিন্মের লাইনগুলো [mysqld] অংশে যোগ করুন:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "ব্যাবহারকারীর নাম:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "ব্যবহারকারীর নাম" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "পাসওর্য়াড" @@ -11230,10 +11243,10 @@ msgstr "সার্ভার আইডি" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "হোষ্ট" @@ -11245,38 +11258,38 @@ msgid "" msgstr "শুধু সহায়কটি --report-host=host_name সহ আরম্ভ হয়েছে।" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "যে কোন হোষ্ট" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "স্থানীয়" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "এই হোষ্ট" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "যে কোন ব্যবহারকারী" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "আক্ষরিক ক্ষেত্র ব্যবহার কর:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "হোষ্ট টেবল ব্যবহার কর" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11285,7 +11298,7 @@ msgstr "" "রক্ষিত মানসমূহ ব্যবহার করা হবে।" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "পুনরায় লিখুন" @@ -12036,7 +12049,7 @@ msgstr "কিছু না" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "ব্যাবহারকারীর দল" @@ -12106,14 +12119,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "টেবিলের নির্দিষ্ট অধিকার" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12124,7 +12137,7 @@ msgid "Administration" msgstr "প্রশাসন" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "সর্বময় অধিকারসমূহ" @@ -12133,7 +12146,7 @@ msgid "Global" msgstr "সর্বময়" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "ডাটাবেইজ নির্ধারিত অধিকারসমূহ" @@ -12150,259 +12163,259 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "অধিকার টেবল রিলোড না করে ব্যবহারকারী এবং তাদের অধিকার যোগ করার অনুমোদন।" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "লগইন তথ্যাবলী" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "আক্ষরীক ক্ষেত্র ব্যবহার করুন" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "পাসওর্য়াডটি পরিবর্তন করবেন না" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s এর পাসওর্য়াডটি সফলভাবে পরিবর্তন করা হয়েছে।" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s অধিকার সমূহ বাতিল করা হয়েছে।" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "ব্যবহারকারী যোগ কর" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "ব্যবহারকারীর ডাটাবেইজ" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "একই নামে ডাটাবেইজ তৈরী কর এবং সব অধীকার দাও।" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "সমস্ত অধিকার সব ব্যবহারকারীকে দাও (username\\_%)।" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" ডাটাবেইজে সমস্ত অধিকার দাও।" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "ব্যবহারকারীরা \"%s\" প্রবেশাধীকার পাবে" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "ব্যবহারকারী যোগ করা হয়েছে।" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "ব্যবহারকারী" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "অনুমোদন" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "ব্যবহারকারী নাই।" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "যে কোন" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "সর্বময়" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "নির্দিষ্ট ডাটবেইজে" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "ওয়াইল্ডকার্ড" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "নির্দিষ্ট টেবলে" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "অধিকারসমূহ সম্পাদনা" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "বাতিল" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "ব্যবহারকারী দল সম্পাদনা" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… পুরাতনটি রাখ।" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… ব্যবহারকারী টেবল থেকে পুরাতনটি মুছে ফেল।" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… পুরাতন সমস্ত অধিকার বাতিল কর এবং পরবর্তীগুলো মুছে ফেল।" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "পুরাতনটি ব্যবহারকারী টেবল থেকে মুছে ফেল এবং অধিকারগুলো পুনারায় চালু কর।" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "লগইন তথ্য পরিবর্তন/ব্যবহারকারীর অনুলিপি" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "একই অধিকারসহ একজন নতুন ব্যবহারকারী তৈরী কর এবং…" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "স্বম্ভ সম্পকির্ত অধিকার" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database:" msgid "Add privileges on the following database(s):" msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "ওয়াইল্ডকার্ড % এবং _ ব্যবহারের জন্য \\ দিয়ে এস্কেপ করতে হবে।" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "নির্বাচিত ব্যবহারকারীদের মুছ" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "এই ব্যবহারকারীদের অধিকার বাতিল কর এবং মুছে ফেল।" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "এই ব্যবহারকারীর নামের সাথে মিল আছে এমন সব ডাটাবেইজ মুছে ফেল।" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "মুছার জন্য কোন ব্যবহারকারী নির্বাচন করা হয়নি!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "অধিকারসমূহ পুনরায় পূর্ণ করা হয়েছে" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "নির্বাচিত ব্যবহরকারীগনকে সফলভাবে মুছা হয়েছে।" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "%s এর অধীকার সমূহ আধুনিকায়ন করা হয়েছে।" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s মুছছি" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "অধিকারসমূহ সফলভাবে পুনরায় পূর্ণকরা হয়েছে।" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "ব্যবহারকারী %s পূর্ব থেকেই আছে!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "%s এর অধিকারসমূহ" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "নতুন" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "সুবিধাসমূহ সম্পাদনা:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "একনজরে ব্যবহারকারীগণ" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "টিকা: phpMyAdmin সরাসরি মাইএসকিউএল অধিকার টেবিল থেকে ব্যবহারকারীর অধিকার " "সংক্রান্ত তথ্য সমূহ নেয়। টেবিলে থাকা অধিকার সম্পর্কিত তথ্য এবং সার্ভারের মধ্য পার্থক্য " "হতে পারে যদি তা পরিবর্তীত হয়ে থাকে। এরুপ ক্ষেত্রে %sreload the privileges%s করতে " "হবে।" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "অধিকার টেবিলে এই ব্যবহারকারী সর্ম্পকে কোন তথ্য নাই।" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "একজন নতুন ব্যবহারকারী যোগ করেছেন।" @@ -14174,21 +14187,21 @@ msgstr "ইনডেক্সের ক্যাশের আকার" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "ইনডেক্সের ধরণ:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "ব্যবহারকারী:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "মন্তব্য:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -14460,8 +14473,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" -"আপনার কনফিগারেশন শুধু এই সেশনের জন্য সংরক্ষন হবে। স্থায়ীভাবে সংরক্ষনের জন্য %" -"sphpMyAdmin configuration storage%s প্রয়োজন।" +"আপনার কনফিগারেশন শুধু এই সেশনের জন্য সংরক্ষন হবে। স্থায়ীভাবে সংরক্ষনের জন্য " +"%sphpMyAdmin configuration storage%s প্রয়োজন।" #: libraries/user_preferences.lib.php:130 msgid "Could not save configuration" @@ -15229,11 +15242,11 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" -"বর্তমান মুক্ত ক্যাশ মেমোরীর হার হল মোট অনুসন্ধান ক্যাশের আকারের %s%%। ইহা অবশ্যই 80%" -"% বেশী থাকবে" +"বর্তমান মুক্ত ক্যাশ মেমোরীর হার হল মোট অনুসন্ধান ক্যাশের আকারের %s%%। ইহা অবশ্যই " +"80%% বেশী থাকবে" #: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" @@ -15288,8 +15301,8 @@ msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " "value is, the better (This rules firing limit: 0.1%%)" msgstr "" -"ইনসার্টেড অনুসন্ধানে অনুসন্ধান সরানোর হার %s%%। এর মান যত কম হবে তত ভাল, ভাল (০.১%" -"%)" +"ইনসার্টেড অনুসন্ধানে অনুসন্ধান সরানোর হার %s%%। এর মান যত কম হবে তত ভাল, ভাল " +"(০.১%%)" #: libraries/advisory_rules.txt:195 msgid "Query cache max size" @@ -15357,8 +15370,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "সমস্ত সর্টের %s%% সাময়িক টেবল তৈরী করছে, এই মানটি 10%% এর কম হবে।" #: libraries/advisory_rules.txt:218 diff --git a/po/br.po b/po/br.po index 81c13e7945..afc5eae045 100644 --- a/po/br.po +++ b/po/br.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-03-28 11:07+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Breton \n" +"Language: br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: br\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -74,7 +74,7 @@ msgstr "Evezhiadennoù diwar-benn an daolenn :" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -98,7 +98,7 @@ msgstr "Bann" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -154,8 +154,8 @@ msgid "Links to" msgstr "Liammet ouzh" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -184,13 +184,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -213,13 +213,13 @@ msgstr "Ket" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -275,14 +275,14 @@ msgstr "" "perak klikañ %samañ%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Taolenn" @@ -295,7 +295,7 @@ msgid "Rows" msgstr "Linennoù" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Ment" @@ -389,9 +389,9 @@ msgstr "Statud" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -594,15 +594,15 @@ msgstr "Ouzhpennañ mentoniezh" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -643,14 +643,14 @@ msgstr "Ensoc'hadennoù sevenet" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %" -"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." +"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an " +"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -739,7 +739,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Distreiñ" @@ -760,7 +760,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -851,7 +851,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Teuliadur" @@ -1109,7 +1109,7 @@ msgstr "Menegerioù" msgid "Edit Index" msgstr "Mod aozañ" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Add %s column(s) to index" @@ -1141,7 +1141,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1176,12 +1176,12 @@ msgstr "Goullo eo anv ar servijer !" msgid "The user name is empty!" msgstr "Goullo eo anv an implijer !" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Goullo eo ar ger-tremen !" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Ne glot ket ar gerioù-tremen !" @@ -1384,7 +1384,7 @@ msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1683,7 +1683,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1918,7 +1918,7 @@ msgstr "Diskouez ar voest rekedoù SQL" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2186,7 +2186,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Na ober van" @@ -2372,7 +2372,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Diskouez pep tra" @@ -2480,7 +2480,7 @@ msgstr "Kuzhat menegerioù" msgid "Show hidden navigation tree items." msgstr "Diskouez al logo er banell verdeiñ gleiz" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main frame" @@ -2999,16 +2999,16 @@ msgid "Delete" msgstr "Diverkañ" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3145,7 +3145,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3577,11 +3577,11 @@ msgstr "Sevenet eo bet ho reked SQL ervat" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %" -"steulioù titouriñ%s." +"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an " +"%steulioù titouriñ%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3617,6 +3617,7 @@ msgstr "Evit ar re zo diuzet :" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3632,12 +3633,12 @@ msgstr "Kemmañ" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3839,7 +3840,7 @@ msgstr "" "bezañ dilamet." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Servijer" @@ -3854,11 +3855,11 @@ msgstr "Gwelet" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3874,7 +3875,7 @@ msgstr "Framm" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3900,9 +3901,9 @@ msgstr "Ensoc'hañ" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3964,9 +3965,9 @@ msgid "Central columns" msgstr "Bannoù evit an takadoù skrid CHAR" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Diazoù roadennoù" @@ -4086,7 +4087,7 @@ msgid "Recent" msgstr "Adderaouekaat" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Tracked tables" msgid "Favorite tables" @@ -4162,7 +4163,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4540,14 +4541,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4803,7 +4804,7 @@ msgstr "Ment vrasañ : %s%s" msgid "MySQL said: " msgstr "respontet eo bet gant MySQL : " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Displegañ SQL" @@ -4815,7 +4816,7 @@ msgstr "N'eo ket dav displegañ SQL" msgid "Without PHP Code" msgstr "Hep kod PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Krouiñ kod PHP" @@ -4934,13 +4935,13 @@ msgstr "Deskrivadur" msgid "Use this value" msgstr "Ober gant an talvoud-mañ" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5366,7 +5367,7 @@ msgid "Set value: %s" msgstr "Lakaat an talvoud da %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Adlakaat an talvoud dre ziouer" @@ -5796,27 +5797,39 @@ msgstr "Ivinell diskouezet pa'z eer tre en un daolenn" msgid "Default table tab" msgstr "Ivinell dre ziouer evit an taolennoù" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Lakaat krochedoù stouet a bep tu da anvioù an taolennoù hag ar bannoù" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Lakaat krochedoù stouet a bep tu da anvioù an taolennoù hag ar bannoù" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Include table caption" msgid "Whether the table structure actions should be hidden." msgstr "Enklozañ an istitloù" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Include table caption" msgid "Hide table structure actions" msgstr "Enklozañ an istitloù" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Diskouez roll ar servijerioù e-lec'h ur roll desachañ." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Diskouez a ra ar servijerioù e stumm ur roll" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5824,11 +5837,11 @@ msgstr "" "Diweredekaat an oberiadennoù trezalc'h a-vras, evel gwellekaat pe kempenn " "taolennoù diuzet un diaz roadennoù." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Diweredekaat trezalc'h an taolennoù lies" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5840,38 +5853,38 @@ msgstr "" "Niver a eilennoù lakaet evit seveniñ ar skriptoù ([kbd]0[/kbd] a dalvez hep " "bevenn)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Pad seveniñ hirañ" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Enrollañ evel restr" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Strobad arouezennoù ar restr" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Furmad" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Gwaskadur" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5881,70 +5894,70 @@ msgstr "Gwaskadur" msgid "Put columns names in the first row" msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" msgstr "Bannoù gronnet gant" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" msgstr "Arouezenn dec'hout" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "Erlec'hiañ NULL gant" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Tennañ an arouezennoù dibenn linenn e dibarzh ar bannoù" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Bannoù a echu gant" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Linennoù a echu gant" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Stumm Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Patrom anv diaz roadennoù" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Patrom anv servijer" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Patrom anv taolenn" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5953,143 +5966,143 @@ msgstr "Patrom anv taolenn" msgid "Dump table" msgstr "Ezporzhiañ an daolenn" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Enklozañ an istitloù" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Istitl eus an daolenn" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Enklozañ an istitloù" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Alc'hwez an dikedenn" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Seurt MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Darempredoù" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Doare ezporzhiañ" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Enrollañ war ar servijer" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Frikañ ar restroù zo c'hoazh" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Derc'hel soñj eus patrom anv ar restr" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Lakaat krochedoù stouet a bep tu da anvioù an taolennoù hag ar bannoù" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Mod kenglotañ gant SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Dibarzhioù evit CREATE TABLE :" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Deiziad krouiñ/hizivaat/gwiriañ" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Ensoc'hadennoù gant dale" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Invalid table name" msgid "Export views as tables" msgstr "Anv taolenn direizh" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Ouzhpennañ %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Implijout an eizhdekvedennad evit BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Arabat ensoc'hañ ul linenn a dalvez kement hag un alc'hwez nemetañ" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Ereadur d'ober gantañ pa vez ensoc'het roadennoù" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Ment vrasañ ar reked krouet" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Seurt ezporzhiadenn" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Enklozañ an ezporzhiadenn en un treuzgread" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Ezporzhiañ an eur er furmad UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "Rediañ a ra kevreadennoù https etre ar servijer ha phpMyAdmin" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Rediañ ar c'hevreadennoù SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -6102,174 +6115,174 @@ msgstr "" "content[/kbd] zo evit an roadenn a zaveer dezhi, [kbd]id[/kbd] zo evit " "talvout an alc'hwez" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Urzh dispakañ an alc'hwezioù estren" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "Ul lañser desachañ a vo implijet ma vez nebeutoc'h a elfennoù" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Bevenn evit an alc'hwezioù estren" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Mod merdeiñ" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "Personelaat ar mod merdeiñ" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default options" msgid "Customize default options." msgstr "Personelaat an dibarzhioù dre ziouer" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Diorroer" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "Arventennoù evit diorroerien phpMyAdmin" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Mod aozañ" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "Personelaat ar mod aozañ" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Talvoudoù dre ziouer evit an ezporzhiañ" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "Personelaat an talvoudoù ezporzhiañ implijet dre ziouer" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Dezverkoù" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Dre-vras" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "Termeniñ un nebeud dibarzhioù implijet ingal" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Talvoudoù enporzhiañ dre ziouer" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "Personelaat an talvoudoù implijet dre ziouer" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Enporzhiañ / Ezporzhiañ" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "Kefluniañ ar c'havlec'hioù enporzhiañ hag an dibarzhioù gwaskañ" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTex" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "Dibarzhioù diskwel an diazoù roadennoù" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "Taolenn verdeiñ" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "Personelaat tres an daolenn verdeiñ" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servijerioù" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "Dibarzhioù diskwel ar servijerioù" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "Dibarzhioù diskwel an taolennoù" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "Taolenn bennañ" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Arventennoù pouezus all" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "Arventennoù a bep seurt" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Titloù pajennoù" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6278,19 +6291,19 @@ msgstr "" "[doc@cfg_TitleTable]teuliadur[/doc] evit an neudennadoù hud a c'haller ober " "ganto." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Prenestr klask" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Personelaat dibarzhioù ar prenestr klask" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Surentez" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6302,25 +6315,25 @@ msgstr "" "Notennit mat n'eo phpMyAdmin nemet un etrefas ha n'eo ket bevennet e mod " "ebet MySQL gant an perzhioù anezhi" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Arventennoù diazez" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Dilesadur" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "Arventennoù dilesañ" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Kefluniadur ar servijer" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6332,17 +6345,17 @@ msgstr "" "Kefluniadur pishoc'h; bezit sur e ouzit ar pezh a rit a-raok mont da gemmañ " "tra pe dra" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "Merkañ arventennoù kevreañ ar servijer" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Mirlec'h ar c'hefluniadurioù" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -6357,11 +6370,11 @@ msgstr "" "ouzhpenn, gwelet [doc@linked-tables]phpMyAdmin configuration storage[/doc] " "en teuliadur" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Heuliañ ar c'hemmoù" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6369,127 +6382,127 @@ msgstr "" "Heuliañ ar c'hemmoù graet en diaz roadennoù. Rekis eo kaout ar stokañ " "kefluniadurioù phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Personelaat an dibarzhioù ezporzhiañ" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Personelaat an arventennoù enporzhiañ dre ziouer" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "Personelaat ar framm merdeiñ" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "Personelaat ar framm pennañ" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Rekedoù SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Boest rekedoù SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "Personelaat al liammoù diskwelet er boestoù rekedoù SQL" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "Arventennoù ar rekedoù SQL" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Pajenn deraouiñ" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "Personelaat ar bajenn deraouiñ" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "Diazoù roadennoù" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "Diazoù roadennoù" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Ivinelloù" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Personelaat an ivinelloù" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Maeziennoù testenn" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "Personelaat ar maeziennoù ebarzhiñ testenn" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Testenn Texy!" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Personelaat an dibarzhioù dre ziouer" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Kemennoù diwall" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Diweredekaat lod eus ar c'hemennoù diwall diskouezet gant phpMyAdmin" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6501,15 +6514,15 @@ msgstr "" "Gweredekaat ar gwaskañ [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] evit an " "oberiadennoù enporzhiañ hag ezporzhiañ" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Arventennoù ouzhpenn evit iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6521,11 +6534,11 @@ msgstr "" "Ma vez gweredekaet e kendalc'h phpMyAdmin da blediñ gant ar rekedoù " "liesfrazennek ha pa vefe ur fazi gant unan anezho." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Na ober van ouzh ar fazioù er rekedoù liesfrazennek" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6535,28 +6548,28 @@ msgstr "" "Gallout a ra sikour da enporzhiañ restroù bras, ha pa c'hallfe terriñ " "treuzgreadoù zo." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Enporzhiañ darnek : aotren paouez" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Arabat paouez gant an enporzhiañ pa vez ur fazi gant INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Erlec'hiañ roadennoù an daolenn gant re ar restr" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6568,82 +6581,82 @@ msgstr "" "Furmad dre ziouer; bezit emskiantek ez eo ar roll-mañ diouzh al lec'hiadur " "(diaz roadennoù, taolenn) ha n'eus nemet SQL zo hegerz dalc'hmat" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Furmad ar restr enporzhiañ" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Ober gant ar ger-alc'hwez LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Anvioù bannoù el linenn gentañ" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Arabat enporzhiañ linennoù goullo" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Enporzhiañ moneizioù ($5.00 a zeu da vezañ 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Enporzhiañ an dregantadoù evel degelennoù (12.00% a zeu da vezañ .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "Niver a rekedoù da lezel a-gostez adalek ar penn-kentañ" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Enporzhiañ darnek : lezel ar rekedoù a gostez" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Arabat ober gant AUTO_INCREMENT evit an talvoudoù par da mann" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Talvoud dre ziouer evit an takadoù riklañ" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "An niver a linennoù a c'haller ober ganto war un dro" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Niver a linennoù da ensoc'hañ" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " @@ -6655,11 +6668,11 @@ msgstr "" "Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre [kbd]cookie" "[/kbd]" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6667,88 +6680,88 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Customize text input fields" msgid "Maximum items on first level" msgstr "Personelaat ar maeziennoù ebarzhiñ testenn" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -6760,944 +6773,944 @@ msgstr "" "Niver a eilennoù lakaet evit seveniñ ar skriptoù ([kbd]0[/kbd] a dalvez hep " "bevenn)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "Diskouez al logo er banell verdeiñ gleiz" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "Diskouez al logo er banell verdeiñ gleiz" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Diskouez al logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "Show logo in left frame" msgid "URL where logo in the navigation panel will point to." msgstr "Diskouez al logo er banell verdeiñ gleiz" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "Diskouez dibab ar servijerioù e laez ar banell gefluniañ" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Bukadenn evit an arlun moned prim" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Bukadenn evit an arlun moned prim" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight row pointed by the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "Lakaat al linenn a vuk al logodenn daveti da usskediñ" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Istitl eus an daolenn" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Istitl eus an daolenn" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relations" msgid "Relational display" msgstr "Darempredoù" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "Dibarzhioù diskwel ar servijerioù" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication settings" msgid "Authentication method to use." msgstr "Arventennoù dilesañ" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns table" msgstr "Bannoù evit an takadoù skrid CHAR" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Tracked tables" msgid "Favorites table" msgstr "Taolennoù heuliet-pizh" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Implijout taolennoù" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show indexes" msgid "Show hint" msgstr "Diskouez menegerioù" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 msgid "" +"Defines whether SQL queries generated by phpMyAdmin should be displayed." +msgstr "" + +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" +msgstr "" + +#: libraries/config/messages.inc.php:764 +msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" msgstr "Kuzhat ar voest rekedoù SQL" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " @@ -7710,51 +7723,51 @@ msgstr "" "Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre [kbd]cookie" "[/kbd]" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7762,52 +7775,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 msgid "" "The url of the proxy to be used when retrieving the information about the " "latest version of phpMyAdmin or when submitting error reports. You need this " @@ -7815,34 +7828,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username:" msgid "Proxy username" msgstr "Anv implijer :" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password:" msgid "Proxy password" msgstr "Ger-tremen :" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -7854,51 +7867,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7920,46 +7933,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Spreadsheet" msgstr "Testenn Open Document" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Text" @@ -8188,20 +8201,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Ger-tremen :" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -8340,8 +8353,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8859,8 +8872,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9339,7 +9352,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "Teuliadur phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Navigation frame" msgid "Reload navigation panel" @@ -10017,11 +10030,11 @@ msgstr "Degemer mat e %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar %" -"1$sskript kefluniañ%2$s da sevel unan." +"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar " +"%1$sskript kefluniañ%2$s da sevel unan." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10261,7 +10274,7 @@ msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -11219,7 +11232,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "Username:" msgid "User name:" @@ -11227,16 +11240,16 @@ msgstr "Anv implijer :" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -11264,10 +11277,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -11279,47 +11292,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "Maeziennoù testenn" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -12103,7 +12116,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12170,14 +12183,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12186,7 +12199,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -12195,7 +12208,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -12212,258 +12225,258 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Ouzhpennañ un implijer" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Check privileges for database \"%s\"." msgid "Add privileges on the following database(s):" msgstr "Gwiriañ ar gwirioù evit an diaz roadennoù \"%s\"." -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Check Privileges" msgid "Privileges for %s" msgstr "Gwiriañ ar gwirioù" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit Privileges:" msgstr "Oc'h adkargañ an dreistgwirioù" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -14192,23 +14205,23 @@ msgstr "Menegerioù" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "Username:" msgid "Parser:" msgstr "Anv implijer :" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Evezhiadenn" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15240,8 +15253,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15374,8 +15387,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/bs.po b/po/bs.po index 987daac366..47551e24e7 100644 --- a/po/bs.po +++ b/po/bs.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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-03-31 14:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bosnian \n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.9-dev\n" #: changelog.php:36 license.php:28 @@ -69,7 +69,7 @@ msgstr "Komentari tabele" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "Kolona" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "Veze ka" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "Primarni" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "Ne" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -268,14 +268,14 @@ msgid "" msgstr "phpMyAdmin konfiguracijski spremnik je isključen. %sSaznaj više%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabela" @@ -288,7 +288,7 @@ msgid "Rows" msgstr "Redova" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Veličina" @@ -390,9 +390,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -601,15 +601,15 @@ msgstr "Dodaj novog korisnika" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -644,8 +644,8 @@ msgstr "Kompletan INSERT (sa imenima polja)" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -719,7 +719,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Nazad" @@ -743,7 +743,7 @@ msgid "General Settings" msgstr "Opšte osobine relacija" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Promeni lozinku" @@ -834,7 +834,7 @@ msgstr "Podatci o prijavi" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentacija" @@ -1104,7 +1104,7 @@ msgstr "Dodaj novo polje" msgid "Edit Index" msgstr "Ključ" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format msgid "Add %s column(s) to index" msgstr "Dodaj novo polje" @@ -1140,7 +1140,7 @@ msgstr "Morate izabrati bar jednu kolonu za prikaz" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1177,12 +1177,12 @@ msgstr "Ime hosta je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" @@ -1396,7 +1396,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1699,7 +1699,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1939,7 +1939,7 @@ msgstr "SQL upit" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2213,7 +2213,7 @@ msgstr "Sadržaj" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignoriši" @@ -2402,7 +2402,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Prikaži sve" @@ -2513,7 +2513,7 @@ msgstr "Dodaj novo polje" msgid "Show hidden navigation tree items." msgstr "Prikaži mrežu" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy msgid "Link with main panel" @@ -3073,16 +3073,16 @@ msgid "Delete" msgstr "Obriši" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3217,7 +3217,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3665,8 +3665,8 @@ msgstr "Vaš SQL upit je uspešno izvršen" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3704,6 +3704,7 @@ msgstr "Označeno:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3719,12 +3720,12 @@ msgstr "Promijeni" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3921,7 +3922,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3936,11 +3937,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3956,7 +3957,7 @@ msgstr "Struktura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3982,9 +3983,9 @@ msgstr "Novi zapis" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegije" @@ -4046,9 +4047,9 @@ msgid "Central columns" msgstr "Dodaj/obriši kolonu" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Baze" @@ -4172,7 +4173,7 @@ msgid "Recent" msgstr "Resetuj" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4253,7 +4254,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4631,14 +4632,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4893,7 +4894,7 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL kaže: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Objasni SQL" @@ -4905,7 +4906,7 @@ msgstr "Preskoči objašnjavanje SQL-a" msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Napravi PHP kod" @@ -5025,13 +5026,13 @@ msgstr "Opis" msgid "Use this value" msgstr "Koristi ovu vrijednost" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5455,7 +5456,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5814,78 +5815,90 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Koristi ' za ograničavanje imena polja" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Koristi ' za ograničavanje imena polja" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Predloži strukturu tabele" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Predloži strukturu tabele" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Radnje na tabeli" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Ime" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Sačuvaj kao datoteku" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "Karakter set datoteke:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5897,73 +5910,73 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Stavi imena polja u prvi red" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Polja ograničena sa" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Escape karakter      " -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "Zamijeni NULL sa" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Linije se završavaju sa" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Linije se završavaju sa" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 #, fuzzy msgid "Database name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 #, fuzzy msgid "Server name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 #, fuzzy msgid "Table name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5974,641 +5987,641 @@ msgstr "Šablon imena datoteke" msgid "Dump table" msgstr "%s tabela" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 #, fuzzy msgid "Table caption" msgstr "Opcije tabele" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 #, fuzzy msgid "Continued table caption" msgstr "Opcije tabele" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-tipovi" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "Izvoz" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće fajlove" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 #, fuzzy msgid "Remember file name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Koristi ' za ograničavanje imena polja" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Use delayed inserts" msgstr "Prošireni INSERT" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Napravi novu tabelu u bazi %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Prošireni INSERT" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "Nema tabela" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy msgid "Customize default options." msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV format" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy msgid "Customize edit mode." msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 -#, fuzzy -msgid "Customize default export options." -msgstr "Opcije za izvoz baze" - -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 -#: setup/frames/menu.inc.php:22 -msgid "Features" -msgstr "" - #: libraries/config/messages.inc.php:226 #, fuzzy +msgid "Customize default export options." +msgstr "Opcije za izvoz baze" + +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 +#: setup/frames/menu.inc.php:22 +msgid "Features" +msgstr "" + +#: libraries/config/messages.inc.php:228 +#, fuzzy msgid "General" msgstr "Generirao" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 #, fuzzy msgid "Import defaults" msgstr "Uvoz fajlova" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "Customize default common import options." msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy msgid "Customize appearance of the navigation panel." msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 #, fuzzy msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Add new field" msgid "Main panel" msgstr "Dodaj novo polje" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Broj strane:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Documentation" msgid "Authentication settings." msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Customize export options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy msgid "Customize navigation panel" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy msgid "Customize main panel" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "SQL upit" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "SQL upit" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "SQL upit" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy msgid "Customize startup page." msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "Baze" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "Baze" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "Tabela" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relaciona shema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Dimenzije papira" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Koristi tekst polje" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy msgid "Customize text input fields." msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Customize default options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Stavi imena polja u prvi red" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6616,1108 +6629,1108 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy msgid "Maximum items on first level" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Memory limit" msgstr "Ograničenja resursa" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Prikaži mrežu" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy msgid "Show logo in navigation panel." msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy msgid "Enable navigation tree expansion" msgstr "Opcije tabele" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analiziraj tabelu" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Promijeni redoslijed u tabeli" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy msgid "Table navigation bar" msgstr "Opcije tabele" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Promjeni ime tabele u " -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational schema" msgid "Relational display" msgstr "Relaciona shema" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Vrijednost sesije" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Documentation" msgid "Authentication method to use." msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 #, fuzzy msgid "Connection type" msgstr "Konekcije" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Bilo koji host" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Bilo koji host" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "Baza ne postoji" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Dodaj/obriši kolonu" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "Nemoj da mijenjaš lozinku" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Baza podataka" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiziraj tabelu" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Promjenljive" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Popravi tabelu" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazujem komentare kolone" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Ime" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy msgid "Automatically create versions" msgstr "Verzija servera" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Koristi tabele" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Koristi tabelu hosta" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Prikaži informacije o PHP-u" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy msgid "Show field types" msgstr "Prikaži tabele" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Prikaži mrežu" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži kompletne upite" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "SQL upit" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 #, fuzzy msgid "Show statistics" msgstr "Statistike reda" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/obriši kolonu" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Podrazumjevano" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7725,52 +7738,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7778,85 +7791,85 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL upit" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Modifications have been saved" msgid "Enable Zero Configuration mode" @@ -7878,46 +7891,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "Dokumentacija" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opcije za izvoz baze" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -8166,20 +8179,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Lozinka:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8343,8 +8356,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8864,8 +8877,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9354,7 +9367,7 @@ msgstr "Odjavljivanje" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "Opcije za izvoz baze" @@ -10042,8 +10055,8 @@ msgstr "Dobrodošli na %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10303,7 +10316,7 @@ msgstr "Stavi imena polja u prvi red" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11326,7 +11339,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11334,16 +11347,16 @@ msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Lozinka" @@ -11373,10 +11386,10 @@ msgstr "Server" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -11388,47 +11401,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Bilo koji host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokalni" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Ovaj server" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Koristi tekst polje" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Koristi tabelu hosta" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Ponovite unos" @@ -12231,7 +12244,7 @@ msgstr "nema" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12301,14 +12314,14 @@ msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12319,7 +12332,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globalne privilegije" @@ -12330,7 +12343,7 @@ msgid "Global" msgstr "globalno" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" @@ -12349,273 +12362,273 @@ msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Podatci o prijavi" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Nemoj da mijenjaš lozinku" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspješno promjenjena." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zabranili ste privilegije za %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Bilo koji korisnik" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Provjeri privilegije za bazu \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy msgid "User has been added." msgstr "Polje %s je obrisano" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Omogući" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "Džoker" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Promijeni privilegije" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Zabrani" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… sačuvaj stare." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… obriši stare iz tabela korisnika." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… obustavi sve privilegije starog korisnika i zatim ga obriši." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Napravi novog korisnika sa istim privilegijama i …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Dodaj privilegije na slijedećoj bazi" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Promijeni privilegije" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -14393,22 +14406,22 @@ msgstr "Ime ključa :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tip ključa :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Korisnik" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy msgid "Comment:" msgstr "Komentari" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15435,8 +15448,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15563,8 +15576,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/ca.po b/po/ca.po index a1585e4897..56b7bd1c3a 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-18 06:45+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: Catalan \n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.3-dev\n" @@ -67,7 +67,7 @@ msgstr "Comentaris de la taula:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Columna" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Enllaços a" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Principal" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "No" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -259,18 +259,18 @@ msgstr "S'ha copiat la base de dades %1$s a %2$s." msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -"S'ha desactivat l'emmagatzemament de la configuració de phpMyAdmin. %" -"sConsulta el motiu%s." +"S'ha desactivat l'emmagatzemament de la configuració de phpMyAdmin. " +"%sConsulta el motiu%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Taula" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Fila" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Mida" @@ -373,9 +373,9 @@ msgstr "Estat" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -571,15 +571,15 @@ msgstr "Afegir geometria" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -612,11 +612,11 @@ msgstr "Paràmetres incomplets" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Probablement has triat d'enviar un arxiu que és massa gran. Consulta la %" -"sdocumentació%s per trobar formes de modificar aquest límit." +"Probablement has triat d'enviar un arxiu que és massa gran. Consulta la " +"%sdocumentació%s per trobar formes de modificar aquest límit." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -703,7 +703,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Enrere" @@ -727,7 +727,7 @@ msgid "General Settings" msgstr "Paràmetres Generals" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Canvi de contrasenya" @@ -800,7 +800,7 @@ msgstr "Informació de la versió:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentació" @@ -1054,7 +1054,7 @@ msgstr "Afegir Index" msgid "Edit Index" msgstr "Editar índex" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Afegeix %s columna(es) a l'index" @@ -1081,7 +1081,7 @@ msgstr "Has d'afegir al menys una columna." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Vista prèvia de l'SQL" @@ -1110,12 +1110,12 @@ msgstr "El nom del servidor és buit!" msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" @@ -1317,7 +1317,7 @@ msgstr "Afegeix al menys una variable a les series!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1613,7 +1613,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1825,7 +1825,7 @@ msgstr "Mostrar quadre de consultes" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2077,7 +2077,7 @@ msgstr "Contingut del punter de dades" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignora" @@ -2260,7 +2260,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Mostra tot" @@ -2362,7 +2362,7 @@ msgstr "Amagar el panell" msgid "Show hidden navigation tree items." msgstr "Mostra l'arbre d'ítems amagat." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Enllaç amb el panell principal" @@ -2866,16 +2866,16 @@ msgid "Delete" msgstr "Esborra" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2990,7 +2990,7 @@ msgid "During current session" msgstr "Durant la sessió actual" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3370,8 +3370,8 @@ msgstr "La vostra comanda SQL ha estat executada amb èxit." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." @@ -3407,6 +3407,7 @@ msgstr "Amb marca:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3422,12 +3423,12 @@ msgstr "Canvi" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3619,7 +3620,7 @@ msgstr "" "esborrar." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Servidor" @@ -3634,11 +3635,11 @@ msgstr "Vista" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3654,7 +3655,7 @@ msgstr "Estructura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3680,9 +3681,9 @@ msgstr "Insereix" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Permisos" @@ -3742,9 +3743,9 @@ msgid "Central columns" msgstr "Columnes centrals" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Bases de dades" @@ -3852,7 +3853,7 @@ msgid "Recent" msgstr "Recent" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Taules favorites" @@ -3923,7 +3924,7 @@ msgstr "Classificant" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4285,20 +4286,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Un nombre de coma flotant petit, els valors permesos són de -3.402823466E+38 " "a -1.175494351E-38, 0, i de 1.175494351E-38 a 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Un nombre de coma flotant de doble precisió, els valors permesos són de -" -"1.7976931348623157E+308 a -2.2250738585072014E-308, 0, i de " +"Un nombre de coma flotant de doble precisió, els valors permesos són de " +"-1.7976931348623157E+308 a -2.2250738585072014E-308, 0, i de " "2.2250738585072014E-308 a 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4594,7 +4595,7 @@ msgstr "Màx: %s%s" msgid "MySQL said: " msgstr "MySQL diu: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Explica SQL" @@ -4606,7 +4607,7 @@ msgstr "Salta l'explicació de l'SQL" msgid "Without PHP Code" msgstr "Sense codi PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Crea codi PHP" @@ -4718,13 +4719,13 @@ msgstr "Descripció" msgid "Use this value" msgstr "Fes servir aquest valor" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5124,7 +5125,7 @@ msgid "Set value: %s" msgstr "Estableix valor: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Restaura el valor per defecte" @@ -5164,11 +5165,11 @@ msgid "" "to an ISP where thousands of users, including you, are connected to." msgstr "" "Aquesta %soption%s s'ha de desactivar perquè permet atacs de força bruta per " -"connectar-se a un servidor MySQL. Si creus que la necessites, usa %" -"srestrict login to MySQL server%s o %strusted proxies list%s. Tanmateix, una " -"protecció basada en adreces IP amb llista de servidors proxy confiables pot " -"no ser efectiva si la teva IP pertany a un proveïdor ISP amb gran quantitat " -"d'usuaris connectats, inclós tu mateix." +"connectar-se a un servidor MySQL. Si creus que la necessites, usa " +"%srestrict login to MySQL server%s o %strusted proxies list%s. Tanmateix, " +"una protecció basada en adreces IP amb llista de servidors proxy confiables " +"pot no ser efectiva si la teva IP pertany a un proveïdor ISP amb gran " +"quantitat d'usuaris connectats, inclós tu mateix." #: libraries/config/ServerConfigChecks.class.php:381 msgid "" @@ -5267,8 +5268,8 @@ msgstr "" "Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom " "d'usuari i la contrasenya per connexions automàtiques, que es una opció no " "recomanable per a servidors actius. Qualsevol que conegui la teva URL de " -"phpMyAdmin pot accedir al teu panel directament. Estableix el %" -"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin pot accedir al teu panel directament. Estableix el " +"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: libraries/config/ServerConfigChecks.class.php:440 #, php-format @@ -5546,23 +5547,35 @@ msgstr "Pestanya que es mostra al entrar a una taula." msgid "Default table tab" msgstr "Pestanya de taula predeterminada" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Usa -backquotes- amb noms de taules i columnes" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Usa -backquotes- amb noms de taules i columnes" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Si s'han d'amagar les accions estructurals de la taula." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Amaga accions d'estructura de taula" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Mostra els servidors com a llista en lloc de llista desplegable." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Mostra servidors com a llista" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5571,11 +5584,11 @@ msgstr "" "l'optimització o la reparació de les taules seleccionades d'una base de " "dades." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Desactivar manteniment múltiple de taules" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5583,39 +5596,39 @@ msgstr "" "Estableix el temps en segons que es permet per executar ordres, ([kbd]0[/" "kbd] per no posar límit)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Màxim temps d'execució" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Afegir instrucció %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Desa com a arxiu" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Joc de caràcters de l'arxiu" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compresió" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5625,60 +5638,60 @@ msgstr "Compresió" msgid "Put columns names in the first row" msgstr "Posa els noms de columnes a la primera fila" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Columnes delimitades amb" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Fi de columna amb" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Canvía NULL amb" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Treu caràcters CRLF de dins les columnes" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Columnes acabades amb" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Línies acabades amb" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Format per excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Plantilla de nom de base de dades" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Plantilla de nom de servidor" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Plantilla de nom de taula" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5687,137 +5700,137 @@ msgstr "Plantilla de nom de taula" msgid "Dump table" msgstr "Opcions de bolcat" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Incloeu l'encapçalament de taula" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Títol de taula" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Ecapçalament de continuació de taula" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Etiqueta de clau" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Tipus MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relacions" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Tipus d'exportació" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Desa al servidor" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Sobreescriu arxiu(s) existent(s)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Recorda la plantilla del nom d'arxiu" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Usa -backquotes- amb noms de taules i columnes" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Modus de compatibilitat SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "opcions CREATE TABLE :" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Dates de Creació/Modificació/Comprovació" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Usa insercions diferides" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Desactiva les comprovacions de claus externes" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exportar les vistes com taules" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Afegeix %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Utilitzeu hexadecimal per a BINARY i BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Utilitza \"ignore inserts\"" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Sintaxi a usar a l'inserció de dades" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Tamany màxim de la consulta creada" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Tipus d'exportació" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Incloure exportació en la transacció" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exporta l'hora en UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Forçar una connexió segura en usar phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Força la connexió SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5826,144 +5839,144 @@ msgstr "" "externes; [kbd]content[/kbd] és la dada referenciada, [kbd]id[/kbd] és el " "valor de la clau." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Ordre de claus externes a la llista desplegable" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "S'utilitzara una llista desplegable si hi ha menys ítems." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Límit de claus externes" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Mode de navegació" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Configura el mode de navegació." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Configura les opcions predeterminades." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Desenvolupador" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Opcions per desenvolupadors de phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Mode d'edició" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Configura el mode d'edició." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Predeterminats d'exportació" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Configura les opcions predeterminades d'exportació." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Propietats" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "General" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Estableix algunes de les opcions més utilitzades." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Predeterminats d'importació" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Configura les opcions predeterminades habituals d'importació." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importar / exportar" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" "Configura els directoris d'importació i exportació i les opcions " "d'empaquetat." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Opcions de visualització de les bases de dades." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Panell de navegació" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Personalitzar l'aspecte del panell de navegació." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servidors" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Opcions de visualització dels servidors." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Opcions de visualització de les taules." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Panell principal" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Altres paràmetres principals" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Paràmetres que no encaixaven en cap altre lloc." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Títols de pàgina" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5972,19 +5985,19 @@ msgstr "" "documentació[/doc] per a cadenes màgiques que poden usar-se per obtenir " "valors especials." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Finestra de consultes" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Configura les opcions de la finestra de consultes" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Seguretat" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -5992,23 +6005,23 @@ msgstr "" "Noteu que phpMyAdmin només és una interfície d'usuari i les seves " "característiques no limiten a MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Paràmetres bàsics" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autenticació" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Paràmetres d'autenticació." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Configuració del servidor" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6016,15 +6029,15 @@ msgstr "" "Configuració avançada del servidor, no canvieu aquestes opcions si no sabeu " "el que fan." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Entra els paràmetres de connexió al servidor." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Infraestructura de taules enllaçades" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6034,11 +6047,11 @@ msgstr "" "a característiques addicionals, consulteu [doc@linked-tables]infraestructura " "de taules enllaçades[/doc] a la documentació." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Seguiment de canvis" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6046,109 +6059,109 @@ msgstr "" "Seguiment de canvis a la base de dades. Necessita de la infraestructura de " "taules enllaçades de phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Configurar valors d'expotació predeterminats" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Configurar valors d'importació predeterminats" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Configurar el panell de navegació" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Configurar el panell principal" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Consultes SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Caixa de consultes SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Configura els enllaços mostrats a les caixes de consultes SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Opcions de consultes SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Inici" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Configura la pàgina d'inici." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Estructura de base de dades" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Tria els detalls a mostrar en l'estructura de base de dades (llista de " "taules)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Estructura de taula" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Configuració de l'estructura de la taula (llista de columnes)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Pestanyes" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Tria cóm vols que treballin les pestanyes." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Mostra l'esquema relacional" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Tamany de paper" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Camps de text" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Configurar els camps d'entrada de text." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "text Texy!" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Configura les opcions predeterminades" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Avisos" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Desactiva alguns dels avisos mostrats per phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6156,15 +6169,15 @@ msgstr "" "Activa la compressió [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] per a les " "operacions d'importació i exportació." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Paràmetres adiccionals per iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6172,11 +6185,11 @@ msgstr "" "Si està activat, phpMyAdmin continuarà processant consultes de múltiples " "instruccions fins la darrera encara que alguna anterior falli." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignora errors d'instruccions multiples" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6186,28 +6199,28 @@ msgstr "" "límit de temps. Pot ser una opció per importar grans arxius, tanmateix pot " "trencar transaccions." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Importació parcial: permet interrompre" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Desactiva les comprovacions de claus externes" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "No avortar en cas d'error d' INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Canviar les dades de la taula per l'arxiu" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6215,69 +6228,69 @@ msgstr "" "Format predeterminat; sigueu conscient que la llista depén de la situació " "(base de dades, taula) i només SQL està sempre disponible." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Format de l'arxiu importat" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Usa clau LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Noms de columnes a la primera fila" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "No importis files buides" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importar monedes ($5.00 a 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importar percentatges amb els decimals adients (12.00% a .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Nombre de consultes a saltar des de l'inici." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Importació parcial: saltar consultes" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No feu servir AUTO_INCREMENT per a valors zero" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Estat inicial per a les barres de desplaçament" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Quantes files es poden inserir de cop." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Nombre de files a inserir" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Màxim nombre de caràcters mostrats a qualsevol columna no-numèrica a la " "vista de navegació." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Limit de caràcters de la columna" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6288,11 +6301,11 @@ msgstr "" "actual. Establint aixó a FALSE fa més fàcil oblidar desconectar-se d'altres " "servidors quan estàs connectat a més d'un." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Esborra totes les galetes al desconnectar" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6300,11 +6313,11 @@ msgstr "" "Defineix si l'anterior autenticació s'ha de recuperar o no al mode " "d'autenticació per [kbd]galetes [/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Nom d'usuari de recuperació" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6316,50 +6329,50 @@ msgstr "" "la sessió actual, i s'esborraran tant aviat com tanquis la finestra del " "navegador. Aixó es recomana per a entorns no confiables." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Emmagatzema les galetes de connexió" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" "Definiu durant quant de temps (en segons) una galeta d'autenticació és " "vàlida." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Validesa de l'autenticació per galetes" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Doble tamany de textarea per a columnes LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "textarea més gran per a LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Màxim nombre de caràcters usats quan es mostra una consulta SQL." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Tamany màxim de SQL mostrat" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Els usuaris no poden establir un valor més gran" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Màxim nombre de bases de dades mostrades a la llista." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Màxim de bases de dades" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6367,11 +6380,11 @@ msgstr "" "El nombre d'items que es poden mostrar a cadapàgina en el primer nivell de " "l'arbre de navegació." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Màxim nombre d'items al primer nivell" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6379,11 +6392,11 @@ msgstr "" "El nombre d'items que es poden mostrar a cada pàgina de l'arbre de " "navegació." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Màxim nombre d'elements en una branca" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6391,19 +6404,19 @@ msgstr "" "Nombre de files mostrades quan es navega mper un resultat. Si el resultat " "conté més files, es mostraran els enllaços \"Anterior\" i \"Següent\"." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Màxim nombre de files a mostrar" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Màxim nombre de taules mostrades a la llista de taules." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Màxim de taules" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6411,41 +6424,41 @@ msgstr "" "El nombre d'octets que una ordre està autoritzada a reservar, ex. [kbd]32M[/" "kbd] ([kbd]0[/kbd] per no posar límit)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Límit de memoria" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" "Al panell de navegació, substitueix l'arbre de bases de dades amb un selector" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Mostra a navegació de les bases de dades com un arbre" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Enllaç amb el panell principal destacant l'actual base de dades o taula." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Mostra el logo al panell de navegació." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Mostra el logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL on apuntarà el logo al panell de navegació." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Enllaç d'URL al logo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6453,27 +6466,27 @@ msgstr "" "Obrir la pàgina enllaçada a la finestra principal ([kbd]main[/kbd]) o bé a " "una de nova ([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Destí d'enllaç al logo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Mostra el servidor triat a dalt del panell de navegació." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Mostra la tría de servidors" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Destí per a la icona d'accés ràpid" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Destí per a l'icona del segon accés ràpid" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6481,15 +6494,15 @@ msgstr "" "Nombre mínim nombre d'elements (taules, vistes, rutines i events) a mostrar " "en una caixa de filtre." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Mínim nombre d'items per a mostrar a la caixa de filtre" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Mínim nombre de bases de dades a mostrar a la caixa de filtre" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6497,96 +6510,96 @@ msgstr "" "Agrupar ítems a l'arbre de navegació (determinat pel separador definit tot " "seguit)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Agrupar elements en l'arbre" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Text que separa bases de dades en diferents nivells d'arbre." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Separador per l'arbre de bases de dades" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Text que separa taules en diferents nivells d'arbre." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Separador d'arbre de taules" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Màxima profunditat de l'arbre de taules" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Resalta el servidor sota el cursor del ratolí." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Activa resaltat" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" "Quan s'ofereix la possibilitat d'expandir l'arbre al panell de navegació." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Qctiva l'expansió de l'arbre de navegació" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Màxim nombre de taules usades recentment; indiqueu 0 per desactivar." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Màxim nombre de taules preferides; indiqueu 0 per desactivar." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Taules usades recentment" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Aquests són els enllaços a Edició, Còpia i Esborrat." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Ón de mostrar els vincles de fila de taula" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Ordre natural" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 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:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Barra de navegació de taules" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Memòria cau de sortida per GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6594,19 +6607,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Ordre de clasificació predeterminat" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Utilitza connexions persistents a bases de dades MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Connexions persistents" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6616,11 +6629,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Falten taules de l'infraestructura de taules enllaçades de phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6628,11 +6641,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Avís de diferència en servidor/llibreria" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6640,27 +6653,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Avís de paraula reservada de MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Còm mostrar les pestanyes del menù" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Cóm mostrar diversos enllaços d'accions" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Desactiva l'edició en columnes tipus BLOB i BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Protegeix les columnes de contingut binari" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6671,106 +6684,106 @@ msgstr "" "fan servir rutines JS per mostrar l'historial de consultes (es perd al " "tancar la finestra)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Historial permanent de consultes" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Quàntes consultes s'han de desar a l'historial." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Tamany de l'historial de consultes" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Motor d'enregistrament" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Recordar l'ordenació de les taules" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Ordre de clasificació de la clau principal" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Repeteix capçeleres" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Edició de graella: disparador d'acció" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Relació a mostrar" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Per les opcions de visualització" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Directori del servidor on pots desar les exportacions." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Directori de desades" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Deixa en blanc si no l'utilitzes." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Ordre d'autenticació del servidor" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Deixa en blanc per als predeterminats." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Regles d'autenticació del servidor" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Permetre connexions sense contrasenya" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Permet la connexió de root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Zona horària de la sessió" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" @@ -6778,17 +6791,17 @@ msgstr "" "Estableix el fus horari efectiu; possiblement diferent del del teu servidor " "de base de dades" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Domini HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6798,19 +6811,19 @@ msgstr "" "maquinari SweKey[/a] (no trobat al teu arrel de documents; es recomana a: /" "etc/swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Arxiu de configuració SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Mètode d'autenticació a usar." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Tipus d'autenticació" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6818,11 +6831,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Taula de consultes desades" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6830,31 +6843,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Taula d'informació de columna" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Connexió comprimida al servidor MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Connexió comprimida" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Tipus de connexió" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Contrasenya de l'usuari de control" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6862,11 +6875,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Usuari de control" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6874,11 +6887,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:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Servidor de control" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6888,15 +6901,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Port de control" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Amagar les bases de dades que compleixin una expresió regular (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6904,15 +6917,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desactiva l'ús d'INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Amagar bases de dades" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6920,23 +6933,23 @@ msgstr "" "Deixa en blanc per desactivar el suport d'historial de consultes SQL, " "suggerit: [kbd]pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Taula d'historial de consultes SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Nom del servidor ón MySQL és en marxa." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Nom del servidor" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL de desconnexió" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6944,15 +6957,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:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Màxim nombre de preferències de taules a desar" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Taula de consultes QBE desades" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6960,11 +6973,11 @@ msgstr "" "Deixa en blanc per desactivar el suport de consultes QBE desades, suggerit: " "[kbd]pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Taula de columnes centrals" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -6972,15 +6985,15 @@ msgstr "" "Deixa en blanc per desactivar el suport de columnes centrals, suggerit: [kbd]" "pma__central_colums[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Intentar connectar sense contrasenya." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Connexió sense contrasenya" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -6990,30 +7003,30 @@ msgstr "" "servir als teus texts, ex.: usa [kbd]'my\\_db'[/kbd] i no [kbd]'my_db'[/" "kbd]." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Mostra només les bases de dades de la llista" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Deixa en blanc si no utilitzes l'autenticació config." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Contrasenya autenticació config" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "Esquema PDF: taula de pàgines" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7024,22 +7037,22 @@ msgstr "" "tenir informació més completa. Deixa en blanc per no utilitzar. Suggerit: " "[kbd]phpmyadmin[/kbd]." -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Nom de base de dades" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Port del servidor" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7047,11 +7060,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Taula usada recentment" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7059,11 +7072,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Taula preferida" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7071,11 +7084,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Taula de relacions" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7083,33 +7096,33 @@ msgstr "" "Consulta [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipus " "d'autenticació[/a] per veure exemples." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Nom de sessió signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL signon" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Sócol del servidor" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Activa SSL per la connexió amb el servidor MySQL." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Usa SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7117,11 +7130,11 @@ msgstr "" "Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Dissenyador i esquema PDF: taula de coordinades" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7129,11 +7142,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Taula de descripció de columnes" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7142,11 +7155,11 @@ msgstr "" "d'interfase de taules entre sessions, suggerit: [kbd]pma__table_uiprefs[/" "kbd]." -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Preferències d'interfase de taula" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7154,11 +7167,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Afegir DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7166,11 +7179,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Afegir DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7178,21 +7191,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Afegir DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Instruccions a seguir" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7200,11 +7213,11 @@ msgstr "" "Deixa en blanc per desactivar el suport de seguiment de consultes SQL, " "suggerit: [kbd]pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Taula de seguiment de consultes SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7212,11 +7225,11 @@ msgstr "" "SI el mecanisme de seguiment crearà versions per a taules i vistes " "automàticament." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Crear versions automàticament" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7224,11 +7237,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Taula de preferències de l'usuari" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7238,11 +7251,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Taula d'usuaris" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7252,11 +7265,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Taula de grups d'usuaris" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7264,15 +7277,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Taula d'elements de navegació amagada" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Usuari per autenticació config" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7280,20 +7293,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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Nom explicatiu d'aquest servidor" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Permet mostrar totes les files" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7303,47 +7316,47 @@ 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Mostra el formulari de canvi de contrasenya" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Mostra el formulari de creació de base de dades" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Mostra el temps de creació" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Mostra data i hora de la darrera actualització" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Mostra el temps de la darrera comprovació" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7351,27 +7364,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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Mostra tipus de camps" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Mostra els camps de funció en modes edició/inserció." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Mostra els camps de funció" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Mostrar o no ajudes." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Mostra ajudes" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7379,63 +7392,63 @@ msgstr "" "Mostra l'enllaç a la sortida de [a@http://php.net/manual/function.phpinfo." "php]phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Mostra l'enllaç a phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Mostra informació detallada del servidor MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Mostra consultes SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Mantenir el quadre de consultes" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Mostra estadístiques" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Salta taules bloquejades" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Si es detecta Suoshin, es mostra un avís a la pàgina principal." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "avís Suoshin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7445,11 +7458,11 @@ msgstr "" "establert de la variable de PHP session.gc_maxlifetime és menor que el de " "`LoginCookieValidity`." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Avís de validesa de la cookie d'autenticació" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7457,11 +7470,11 @@ msgstr "" "Tamany de textarea (columnes) en mode d'edició, aquest valor s'augmentarà " "per a textareas de consultes SQL (*2) i per finestres de consultes (*1.25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Columnes per a textareas" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7469,32 +7482,32 @@ msgstr "" "Tamany de textarea (files) en mode d'edició, aquest valor s'augmentarà per a " "textareas de consultes SQL (*2) i per finestres de consultes (*1.25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Files per a textareas" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Títol per defecte" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7506,27 +7519,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Llista de proxies confiables per autoritzar/prohibir IP" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Directori de pujades" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Permet cercar dins de tota la base de dades." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Usa cerca de base de dades" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7534,28 +7547,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Activa la pestanya del Desenvolupador en les opcions" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Comprova la darrera versió" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7567,11 +7580,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:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "URL del proxy" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7581,19 +7594,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Nom d'usuari del proxy" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "La contrasenya per autenticar amb el proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Contrasenya del proxy" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7601,35 +7614,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Clau pùblica per a reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Clau privada per a reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Enviar informes d'error" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." @@ -7637,11 +7650,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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "Enter executa consultes a la consola" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7649,7 +7662,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:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Activa el mode Configuració Zero" @@ -7669,44 +7682,44 @@ msgstr "Autenticació HTTP" msgid "Signon authentication" msgstr "autenticació Signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV usant LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Full de càlcul OpenDocument" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Ràpid" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Usuari" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opcions d'exportació de bases de dades" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV per dades de MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Texte OpenDocument" @@ -7919,20 +7932,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Sense contrasenya" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Contrasenya:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Reescriu:" @@ -8070,12 +8083,12 @@ msgstr ", @TABLE@ serà el nom de la taula" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les " -"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3" -"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " +"cadenes de formateig de temps. A més, es faran aquestes transformacions: " +"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " "per a més detalls." #: libraries/display_export.lib.php:526 @@ -8632,8 +8645,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." @@ -9102,7 +9115,7 @@ msgstr "Surt" msgid "phpMyAdmin documentation" msgstr "Documentació de phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Recarrega el panell de navegació" @@ -9404,8 +9417,8 @@ msgid "" "No partial dependencies possible as no non-primary column exists since " "primary key ( %1$s ) is composed of all the columns in the table." msgstr "" -"No hi ha dependències parcials possibles degut a que la clau principal (%1" -"$s) està composta per totes les columnes de la taula." +"No hi ha dependències parcials possibles degut a que la clau principal " +"(%1$s) està composta per totes les columnes de la taula." #: libraries/normalization.lib.php:318 libraries/normalization.lib.php:360 msgid "Table is already in second normal form." @@ -9794,8 +9807,8 @@ msgstr "Benvingut a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La raó més probable d'aixó és que no heu creat l'arxiu de configuració. " "Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un." @@ -10024,7 +10037,7 @@ msgstr "Posa els noms de columnes a la primera fila:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Servidor:" @@ -11035,22 +11048,22 @@ msgstr "" "configuració (my.cnf). Si no, afegeix la línia següent a la secció [mysqld] :" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Nom d'usuari:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nom d'usuari" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Contrasenya" @@ -11078,10 +11091,10 @@ msgstr "ID de Servidor" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Servidor" @@ -11095,38 +11108,38 @@ msgstr "" "mostren en aquesta llista." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Qualsevol servidor" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Aquest Host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Qualsevol usuari" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Usa camp de text:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Utilitza la Taula de Hosts" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11135,7 +11148,7 @@ msgstr "" "valors enmagatzemats a la taula Host en lloc seu." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Reescriu" @@ -11869,7 +11882,7 @@ msgstr "Cap" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Grup d'usuari" @@ -11940,14 +11953,14 @@ msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: Els noms dels privilegis del MySQL són en idioma anglès." @@ -11956,7 +11969,7 @@ msgid "Administration" msgstr "Administració" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Permisos generals" @@ -11965,7 +11978,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Permisos específics de base de dades" @@ -11984,18 +11997,18 @@ msgstr "" "Permet afegir usuaris i permisos sense tenir que recarregar les taules de " "permisos." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Informació d'Identificació" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Usa camp de text" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12003,216 +12016,216 @@ msgstr "" "Ja existeix un compte amb el mateix nom d'usuari però possiblement amb nom " "de servidor diferent." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "No canviïs la contrasenya" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "La contrasenya per %s s'ha canviat correctament." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Has tret els permisos per %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Afegirl usuari" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Base de dades per usuari" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Atorga tots els permisos en un nom comodí (nomusuari\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Atorga tots els permisos a la base de dades \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuaris amb accés a \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Usuari afegit." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Usuari" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Atorga" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Permisos insuficients per veure usuaris." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "No s'han trobat usuaris." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Qualsevol" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "específic de la base de dades" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "comodins" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "específic de la taula" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Edita permisos" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Treu" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Editar grup d'usuari" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… respecta l'antic." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… esborra l'antic de les taules d'usuaris." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… treu tots els permisos actius de l'antic i esborra'l després." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… esborra l'antic de les taules d'usuaris i recarrega els permisos després." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Canvi d'Informació de Connexió / Copia d'Usuari" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Crea un nou usuari amb els mateixos permisos i …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Permisos específics de columna" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Afegeix permisos a la/les següent(s) base(s) de dades:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Els comodins _ i % han de marcar-se amb una \\ per usar-los literalment." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Afegeix permisos a la següent taula:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Treu els usuaris triats" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Treu tots els permisos actius dels usuaris i els esborra després." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" "Esborra les bases de dades que tenen els mateixos noms que els usuaris." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "No s'han triat usuaris per esborrar!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Recarregant permisos" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "S'han esborrat correctament els usuaris triats." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Heu actualitzat els permisos de %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Esborrant %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "L'usuari %s ja existeix!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Permisos per a %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nou" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Edita permisos:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12220,28 +12233,28 @@ msgstr "" "Nota: estàs intentant editar els permisos de l'usuari amb el que has iniciat " "la sessió actual." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Vista global d'usuaris" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de " "permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels " "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Has afegit un usuari nou." @@ -14038,19 +14051,19 @@ msgstr "Tria de l'índex:" msgid "Key block size:" msgstr "Mida del bloc de clau:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tipus d'índex:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Analitzador:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Comentari:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Arrossega per reordenar" @@ -15086,8 +15099,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "La taxa actual de memòria lluire del cau de consultes respecte la mida total " "és de %s%%. Hauria de estar per sobre de 80%%" @@ -15245,8 +15258,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% de totes les ordenacions causen taules temporals, aquest valor ha de " "ser inferior al 10%%." @@ -15655,8 +15668,8 @@ msgstr "" #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" -"Bloquejos immediats de taula: %s%%, aquest valor ha d'estar per sobre del 95%" -"%" +"Bloquejos immediats de taula: %s%%, aquest valor ha d'estar per sobre del " +"95%%" #: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" @@ -16445,8 +16458,8 @@ msgstr "{concurrent_insert} està establert a 0" #~ "%s." #~ msgstr "" #~ "No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu " -#~ "instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" -#~ "sdocumentació%s." +#~ "instal·lats els mòduls de PHP necessaris tal i com s'indica a la " +#~ "%sdocumentació%s." #, fuzzy #~| msgid "Error: Relation not added." diff --git a/po/ckb.po b/po/ckb.po index 21874aeea8..7c95aa0a5e 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-10-29 18:21+0200\n" "Last-Translator: Aso Naderi \n" "Language-Team: Kurdish Sorani \n" +"Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ckb\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.0-dev\n" @@ -72,7 +72,7 @@ msgstr "تێبینیەکانی خشتە:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -96,7 +96,7 @@ msgstr "ستون" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -152,8 +152,8 @@ msgid "Links to" msgstr "بەستەر دەکات بۆ" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -182,13 +182,13 @@ msgstr "سەرەکی" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -211,13 +211,13 @@ msgstr "نەخێر" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -267,18 +267,18 @@ msgstr "بنکەی دراوەی %1$s ڕوونووس کرا بۆ بنکەی در msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -"ڕێکخستنەکانی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە %" -"shere%s." +"ڕێکخستنەکانی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە " +"%shere%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "خشتە" @@ -291,7 +291,7 @@ msgid "Rows" msgstr "خانە" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "قەبارە" @@ -381,9 +381,9 @@ msgstr "ڕەوش" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -578,15 +578,15 @@ msgstr "زیادکردنی ئەندازەگەری" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -625,11 +625,11 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"لەوانەیە تۆ هەوڵت دابێت فایلێک بە قەبارەیەکی زۆر بار بکەی. تکایە سەردانی %" -"sبەڵگەسازی%s بکە بۆ چارەکردنی ئەم سنوردار کردنە." +"لەوانەیە تۆ هەوڵت دابێت فایلێک بە قەبارەیەکی زۆر بار بکەی. تکایە سەردانی " +"%sبەڵگەسازی%s بکە بۆ چارەکردنی ئەم سنوردار کردنە." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -717,7 +717,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "گەڕانەوە" @@ -741,7 +741,7 @@ msgid "General Settings" msgstr "ڕێکخستنە گشتیەکان" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "گۆڕینی وشەی نهێنی" @@ -816,7 +816,7 @@ msgstr "زانیاری وەشان:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "به‌ڵگه‌سازی" @@ -898,8 +898,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " msgstr "" -"ڕێکخستنەکانی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە %" -"shere%s." +"ڕێکخستنەکانی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە " +"%shere%s." #: index.php:549 msgid "" @@ -1073,7 +1073,7 @@ msgstr "زیادکردنی نیشاندەر" msgid "Edit Index" msgstr "چاکردنی نیشاندەر" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" @@ -1103,7 +1103,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "پێشاندانی SQL" @@ -1138,12 +1138,12 @@ msgstr "ناوی خانەخوێ بەتاڵە!" msgid "The user name is empty!" msgstr "ناوی بەکارهێنانی خانەخوێ بەتاڵە!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "وشەی نهێنی بەتاڵە!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "تێپەڕە وشەکان وەک یەک نین!" @@ -1344,7 +1344,7 @@ msgstr "تکایە لانی کەم یەک گۆڕاو بۆ زنجیرەکە زی #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1618,7 +1618,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1835,7 +1835,7 @@ msgstr "پێشاندانی سندوقی داواکاری" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2099,7 +2099,7 @@ msgstr "ناوەڕۆکی زانیاری خاڵ" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "فەرامۆشکردن" @@ -2291,7 +2291,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "هه‌مووی ببینه‌" @@ -2399,7 +2399,7 @@ msgstr "شاردنەوەی نیشاندەرەکان" msgid "Show hidden navigation tree items." msgstr "پێشاندانی نیشاندەرەکان" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Hide indexes" @@ -2904,16 +2904,16 @@ msgid "Delete" msgstr "سڕینەوە" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3048,7 +3048,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3463,11 +3463,11 @@ msgstr "سیكوێڵ کیوریەکەت بەسەرکەوتوویی ئەنجام #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"لەم تێڕوانیینە بەلایەنی کەم ئەم ژمارە دێڕە بوونی هەیە.تکایە سەردانی %" -"sبەڵگەسازی%s بکە ." +"لەم تێڕوانیینە بەلایەنی کەم ئەم ژمارە دێڕە بوونی هەیە.تکایە سەردانی " +"%sبەڵگەسازی%s بکە ." #: libraries/DisplayResults.class.php:4560 #, fuzzy, php-format @@ -3504,6 +3504,7 @@ msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3519,12 +3520,12 @@ msgstr "گۆڕین" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3717,7 +3718,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "سێرڤەر" @@ -3732,11 +3733,11 @@ msgstr "نیشاندان" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3752,7 +3753,7 @@ msgstr "پێکهاتە" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3778,9 +3779,9 @@ msgstr "تێخستن" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "تایبەتمەندێتیەکان" @@ -3842,9 +3843,9 @@ msgid "Central columns" msgstr "ستونەکان زیادبکە" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "بنکە زانیاریەکان" @@ -3964,7 +3965,7 @@ msgid "Recent" msgstr "خشتە تازەکان" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4041,7 +4042,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4405,14 +4406,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4660,7 +4661,7 @@ msgstr "" msgid "MySQL said: " msgstr "مای‌ئێس‌كیو‌ئێڵ دەڵێت: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "ڕوونکردنەوەی سیكوێڵ" @@ -4672,7 +4673,7 @@ msgstr "پشتگوێخستنی ڕوونکردنەوەی سیكوێڵ" msgid "Without PHP Code" msgstr "بەبێ پی ئێچ پی کۆد" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "پی ئێچ پی کۆد دروست بکە" @@ -4789,13 +4790,13 @@ msgstr "پێناسە" msgid "Use this value" msgstr "ئەم نرخە هەڵبژێرە" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5205,7 +5206,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5563,70 +5564,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5636,60 +5645,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5698,600 +5707,600 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "زیادکردن %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Query results operations" msgid "Customize default options." msgstr "کردارەکانی ئەنجامی داواکاری" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Database client version" msgid "Databases display options." msgstr "وەشانی ڕاژەخوازی بنکەی دراوە" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Table comments" msgid "Tables display options." msgstr "تێبینیەکانی خشتە" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Hide indexes" msgid "Main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Current settings" msgid "Authentication settings." msgstr "ڕێکخستنەکانی هەنووکە" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Server connection collation" msgid "Enter server connection parameters." msgstr "ڕێکخستنی پەیوەندی ڕاژەکار" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "Current settings" msgid "SQL queries settings." msgstr "ڕێکخستنەکانی هەنووکە" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6299,1065 +6308,1065 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show indexes" msgid "Show databases navigation as tree" msgstr "پێشاندانی نیشاندەرەکان" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Table comments" msgid "Show logo in navigation panel." msgstr "تێبینیەکانی خشتە" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table comments" msgid "Enable navigation tree expansion" msgstr "تێبینیەکانی خشتە" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table comments" msgid "Table navigation bar" msgstr "تێبینیەکانی خشتە" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "No data found" msgid "Relational display" msgstr "هیچ زانیاریەک نەدۆزراوە" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Table comments" msgid "For display Options" msgstr "تێبینیەکانی خشتە" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection" msgid "Compress connection to MySQL server." msgstr "پەستانی پەیوەندی" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "پەستانی پەیوەندی" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "جۆری پەیوەندی" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "شاردنەوەى بنکەی دراو" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "چوونەدەرەوە بەستەر" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add columns" msgid "Central columns table" msgstr "ستونەکان زیادبکە" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Connect without password" msgid "Try to connect without password." msgstr "پەیوەندی بەبێ وشەی نهێنی" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "پەیوەندی بەبێ وشەی نهێنی" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "تەنها نیشاندانی لیستی بنکەی دراو" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "ناوی بنکەی دراو" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "گۆڕاوەکان" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "بەکارهێنانی SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "خشتە بەکار ببە" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "نیشاندانی پرسگەی SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "نیشاندانی سەرژمێری" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "سەردێری بنەڕەت" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7365,52 +7374,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "بەکارهێنانی گەڕان لە بنکەی دراو" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "پشکنین بۆ دۆزینەوەی نوێترین وەشان" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7418,84 +7427,84 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "ناوی بەکارهێنەر" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "وشەی نهێنی" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Enable Zero Configuration mode" @@ -7517,44 +7526,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "خێرا" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "ڕاسپێراو" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -7780,20 +7789,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7932,8 +7941,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8437,8 +8446,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8911,7 +8920,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Table comments" msgid "Reload navigation panel" @@ -9581,8 +9590,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9811,7 +9820,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10748,7 +10757,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "Username" msgid "User name:" @@ -10756,16 +10765,16 @@ msgstr "ناوی بەکارهێنەر" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "وشەی نهێنی" @@ -10793,10 +10802,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10808,45 +10817,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11571,7 +11580,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11638,14 +11647,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11654,7 +11663,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11663,7 +11672,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11680,255 +11689,255 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "زیادکردنی بەکارهێنەر" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "بەکارهێنەر" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Privileges" msgid "Edit Privileges:" msgstr "تایبەتمەندێتیەکان" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13602,23 +13611,23 @@ msgstr "نیشاندەرەکان" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "بەکارهێنەر:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "لێدوان" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -14616,8 +14625,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14735,8 +14744,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/cs.po b/po/cs.po index f6fc5912e9..519d3716fc 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,15 +5,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-06 14:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 2.3-dev\n" @@ -69,7 +69,7 @@ msgstr "Komentář k tabulce:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "Pole" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "Odkazuje na" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "Primární" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "Ne" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -264,14 +264,14 @@ msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZjistěte proč%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabulka" @@ -284,7 +284,7 @@ msgid "Rows" msgstr "Řádků" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Velikost" @@ -374,9 +374,9 @@ msgstr "Stav" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -569,15 +569,15 @@ msgstr "Přidat geometrii" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -609,8 +609,8 @@ msgstr "Chybí parametry" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -697,7 +697,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Zpět" @@ -720,7 +720,7 @@ msgid "General Settings" msgstr "Obecná nastavení" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Změnit heslo" @@ -793,7 +793,7 @@ msgstr "Informace o verzi:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentace" @@ -1052,7 +1052,7 @@ msgstr "Přidat klíč" msgid "Edit Index" msgstr "Upravit klíč" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Přidat %s polí do klíče" @@ -1079,7 +1079,7 @@ msgstr "Musíte přidat alespoň jedno pole." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Náhled SQL" @@ -1108,12 +1108,12 @@ msgstr "Jméno počítače je prázdné!" msgid "The user name is empty!" msgstr "Jméno uživatele je prázdné!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" @@ -1313,7 +1313,7 @@ msgstr "Prosím přidejte do série alespoň jednu hodnotu!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1605,7 +1605,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1816,7 +1816,7 @@ msgstr "Zobrazit pole pro dotaz" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2056,7 +2056,7 @@ msgstr "Obsah datového bodu" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorovat" @@ -2235,7 +2235,7 @@ msgstr "Klikněte na šipku
pro vybrání sloupců." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Zobrazit vše" @@ -2331,7 +2331,7 @@ msgstr "Skrýt panel" msgid "Show hidden navigation tree items." msgstr "Zobrazit skryté položky navigačního panelu." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Spojit s hlavním panelem" @@ -2836,16 +2836,16 @@ msgid "Delete" msgstr "Odstranit" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2966,7 +2966,7 @@ msgid "During current session" msgstr "Přeskočit současnou chybu" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3349,8 +3349,8 @@ msgstr "Váš SQL-dotaz byl úspěšně vykonán." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." @@ -3386,6 +3386,7 @@ msgstr "Zaškrtnuté:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3401,12 +3402,12 @@ msgstr "Změnit" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3599,7 +3600,7 @@ msgstr "" "odstraněn." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3614,11 +3615,11 @@ msgstr "Pohled" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3634,7 +3635,7 @@ msgstr "Struktura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3660,9 +3661,9 @@ msgstr "Vložit" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Oprávnění" @@ -3724,9 +3725,9 @@ msgid "Central columns" msgstr "Sloupců v textové oblasti" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Databáze" @@ -3837,7 +3838,7 @@ msgid "Recent" msgstr "Nedávné" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Oblíbené tabulky" @@ -3908,7 +3909,7 @@ msgstr "Řazení" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4273,20 +4274,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od -3.402823466E" "+38 od -1.175494351E-38, 0, a od 1.175494351E-38 do 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od -" -"1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od " +"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od " +"-1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od " "2.2250738585072014E-308 do 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4565,7 +4566,7 @@ msgstr "Maximální velikost: %s%s" msgid "MySQL said: " msgstr "MySQL hlásí: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Vysvětlit SQL" @@ -4577,7 +4578,7 @@ msgstr "Bez vysvětlení SQL" msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Vytvořit PHP kód" @@ -4690,13 +4691,13 @@ msgstr "Popis" msgid "Use this value" msgstr "Použít tuto hodnotu" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5091,7 +5092,7 @@ msgid "Set value: %s" msgstr "Nastavena hodnota: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Obnovit výchozí hodnotu" @@ -5221,8 +5222,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %" -"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " +"Pokud to považujete za nutné, použijte další možnosti zabezpečení - " +"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " "založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa " "dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli." @@ -5516,23 +5517,35 @@ msgstr "Panel, který je zobrazen při přístupu k tabulce." msgid "Default table tab" msgstr "Výchozí panel tabulky" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Použít zpětné uvozovky u jmen tabulek a polí" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Použít zpětné uvozovky u jmen tabulek a polí" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Jestli mají být schovávány akce při zobrazení struktury tabulek." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Schovat akce při zobrazení struktury tabulky" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Zobrazit přehled serverů jako seznam namísto rozbalovacího menu." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Zobrazit servery jako seznam" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5540,11 +5553,11 @@ msgstr "" "Vypne hromadné operace pro údržbu tabulke jako optimalizaci nebo opravu " "vybraných tabulek z databáze." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Vypnout hromadné operace s tabulkami" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5552,39 +5565,39 @@ msgstr "" "Zadejte počet sekund, po které může skript běžet ([kbd]0[/kbd] pro žádná " "omezení)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Časový limit běhu skriptu" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Přidat příkaz %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Uložit jako soubor" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Znaková sada souboru" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formát" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Komprese" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5594,60 +5607,60 @@ msgstr "Komprese" msgid "Put columns names in the first row" msgstr "Přidat jména polí na první řádek" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Pole uzavřené do" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Pole escapována" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Nahradit NULL hodnoty" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Odstranit znaky konců řádek z polí" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Pole oddělené" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Řádky ukončené" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Verze Excelu" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Vzor pro jméno databáze" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Vzor pro jméno serveru" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Vzor pro jméno tabulky" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5656,137 +5669,137 @@ msgstr "Vzor pro jméno tabulky" msgid "Dump table" msgstr "Vypsat tabulku" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Použít titulek tabulky" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Titulek tabulky" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Titulek pokračování tabulky" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Návěstí" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME typ" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relace" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Způsob exportu" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Uložit na server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Přepsat existující soubory" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Pamatovat si vzor pro jména souborů" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Použít zpětné uvozovky u jmen tabulek a polí" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Parametry CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Datum vytvoření, poslední změny a kontroly" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Používat zpožděné inserty" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Vypnout kontrolu cizích klíčů" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exportovat pohledy jako tabulky" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Přidat %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Použít šestnáctkové zobrazení pro BINARY a BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Použít IGNORE" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Jakou syntaxi použít pro vkládání dat" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maximální velikost vytvořeného dotazu" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Typ exportu" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Uzavřít příkazy v transakci" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exportovat čas v UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Vynutit zabezpečené spojení při použití phpMyAdmina." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Vynutit SSL spojení" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5794,143 +5807,143 @@ msgstr "" "Pořadí řazení položek v rozbalovací nabídce cizích klíčů; [kbd]obsah[/kbd] " "jsou referenční data, [kbd]id[/kbd] je hodnota klíče." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Pořadí cizích klíčů v rozbalovací nabídce" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" "Rozbalovací nabídka bude použita pokud je přítomno menší množství položek." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Nejvyšší počet cizích klíčů" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Režim prohlížení" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Přizpůsobí režim prohlížení." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Přizpůsobí výchozí nastavení." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Pro vývojáře" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Nastavení pro vývojáře phpMyAdmina." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Režim úprav" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Přizpůsobí režim úprav." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Výchozí nastavení exportu" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Přizpůsobí výchozí nastavení exportu." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funkce" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Obecné" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Nejčastěji používaná nastavení." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Výchozí nastavení importu" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Přizpůsobí výchozí nastavení importu." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Import / export" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Nastaví adresáře pro import a export a volby komprese." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Nastavení zobrazení databází." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigační panel" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Přizpůsobí vzhled navigačního panelu." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servery" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Nastavení zobrazení serverů." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Nastavení zobrazení tabulek." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Hlavní panel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Jiná důležitá nastavení" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Nastavení, která nelze zařadit jinam." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Jména stránek" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5938,19 +5951,19 @@ msgstr "" "Zadejte titulek který zobrazí prohlížeč. V [doc@cfg_TitleTable]dokumentaci[/" "doc] naleznete jaké proměnné můžete použít." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Okno dotazů" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Přizpůsobit nastavení okna dotazů" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Zabezpečení" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -5958,23 +5971,23 @@ msgstr "" "Prosíme uvědomte si, že phpMyAdmin je pouze uživatelské rozhraní a jeho " "funkce neomezují MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Základní nastavení" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Přihlašování" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Nastavení přihlašování." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Nastavení serveru" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -5982,15 +5995,15 @@ msgstr "" "Pokročilé nastavení serveru, neměňte tyto volby, pokud nevíte, čeho se " "týkají." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Vložte parametry připojení k serveru." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Úložiště nastavení" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6000,11 +6013,11 @@ msgstr "" "dodatečným funkcím, viz sekce [doc@linked-tables]úložiště nastavení " "phpMyAdmina[/doc] v dokumentaci." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Sledování změn" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6012,109 +6025,109 @@ msgstr "" "Sledování změn provedených v databazí. Vyžaduje nastavené úložiště nastavení " "phpMyAdmina." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Přizpůsobení exportu" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Přizpůsobení výchozího nastavení importu" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Přizpůsobení navigačního panelu" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Přizpůsobení hlavního panelu" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL dotazy" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Políčko pro SQL dotazy" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Přizpůsobení odkazů zobrazených v políčcích pro SQL dotazy." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Nastavení SQL dotazů." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Úvodní stránka" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Přizpůsobení úvodní stránky." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Struktura databáze" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Zvolte co se má zobrazit při zobrazení struktury databáze (seznam tabulek)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Struktura tabulky" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" "Zvolte co se má zobrazit při zobrazení struktury tabulky (seznam polí)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Panely" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Nastaví, jak mají fungovat panely." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Zobrazit relační schéma" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Velikost stránky" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Textová pole" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Přizpůsobení textových polí." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Přizpůsobí výchozí nastavení" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Varování" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Vypnout některá varování zobrazovaná phpMyAdminem." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6122,15 +6135,15 @@ msgstr "" "Povolí [a@http://cs.wikipedia.org/wiki/Gzip]gzip[/a] kompresi pro " "importování a exportování." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Další parametry pro iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6138,11 +6151,11 @@ msgstr "" "Pokud je povoleno, PMA pokračuje ve zpracování víceprvkových dotazů, i když " "jeden z nich selhal." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignorovat chyby ve víceprvkových dotazech" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6152,28 +6165,28 @@ msgstr "" "časového limitu. Tento způsob může být vhodný pro import velkých souborů, " "ovšem může poškodit transakce." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Častečný import: povolit přerušení" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Vypnout kontrolu cizích klíčů" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Nepřerušit při chybě v příkazu INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Přepsat data tabulky souborem" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6181,67 +6194,67 @@ msgstr "" "Výchozí formát; uvědomte si, že toto závisí na umístění (databáze, tabulka) " "a pouze SQL je vždy dostupný." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formát importovaného souboru" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Použít klíčové slovo LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Jména polí na prvním řádku" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Neimportovat prázdné řádky" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importovat měny (5.00 místo $5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importovat procenta jako desetinná čísla (0.12 místo 12.00%)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Počet dotazů od začátku, které se mají přeskočit." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Částečný import: přeskočit dotazy" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Počáteční stav pro rozbalovací pole" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Kolik řádků může být vloženo naráz." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Počet vkládaných řádků" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "Nejvyšší počet znaků zobrazeních v nečíselných polích při procházení." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Omezení počtu znaků" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6252,11 +6265,11 @@ msgstr "" "Zakázání může způsobit, že se zapomenete odhlásit od ostatních serverů, " "pokud jich používáte více." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Smazat všechny cookies při odhlášení" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6264,11 +6277,11 @@ msgstr "" "Určuje, zda se má pamatovat předchozí přihlášení, při použití přihlašování " "pomocí [kbd]cookie[/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Pamatovat si uživatelské jméno" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6280,48 +6293,48 @@ msgstr "" "sezení, čili, že bude smazána v okamžiku, kdy zavřete okno prohlížeče. Tato " "volba je doporučena pro nedůvěryhodná prostředí." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Uložení přihlašovací cookie" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Určuje, jak dlouho (v sekundách) je přihlašovací cookie platná." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Platnost přihlašovací cookie" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Zdvojnásobit velikost editačního pole pro sloupec typu LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Větší editační pole pro LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Nejvyšší počet znaků SQL dotazu, které se ještě zobrazí." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Nejvyšší délka zobrazeného SQL dotazu" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Uživatelé nemohou nastavit větší hodnotu" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Nejvyšší počet databází zobrazených v seznamu databází." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Nejvyšší počet databází" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6329,22 +6342,22 @@ msgstr "" "Počet položek, které se mají zobrazit na každé stránce první úrovně " "navigačního stromu." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Nejvyšší počet položek na první úrovni" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" "Počet položek, které se mají zobrazit na každé stránce navigačního stromu." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Nejvyšší počet položek ve větvi" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6352,19 +6365,19 @@ msgstr "" "Počet řádků, které se zobrazí při procházení množiny výsledků. Pokud je " "množina výsledků delší, zobrazí se odkazy „Předchozí“ a „Další“." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Nejvyšší počet zobrazených řádků" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Nejvyšší počet tabulek zobrazených v seznamu tabulek." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Nejvyšší počet zobrazených tabulek" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6372,41 +6385,41 @@ msgstr "" "Počet bytů, které si může skript alokovat, např. [kbd]32M[/kbd] ([kbd]0[/" "kbd] ruší omezení)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Omezení paměti" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Zobrazit skryté položky navigačního panelu." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Zobrazit logo v navigačním panelu." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Zobrazit logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL na které bude odkazovat logo v navigačním panelu." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL odkazu loga" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6414,29 +6427,29 @@ msgstr "" "Zda se má odkazovaná stránka otevřít v hlavním okně ([kbd]hlavní[/kbd]) nebo " "v novém ([kbd]nové[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Cíl odkazu loga" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Zobrazí volbu serveru v horní části navigačního panelu." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Zobrazit výběr serverů" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Cíl pro ikonu rychlého přístupu" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Cíl pro ikonu rychlého přístupu" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6444,114 +6457,114 @@ msgstr "" "Definuje minimální počet položek (tabulky, pohledy, procedury a události) " "pro zobrazení filtrovacího pole." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Minimální počet položek pro zobrazení filtrovacího pole" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Minimální počet tabulek pro zobrazení filtru databází" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" "Seskupovat položky v navigačním stromu (určeno oddělovačem nastaveným níže)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Seskupovat položky ve stromu" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Řetězec, který rozděluje databáze do různých pater stromu." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Oddělovač databázového stromu" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Řetězec, který rozděluje tabulky do různých pater stromu." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Oddělovač tabulkovýho stromu" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Nejvyšší počet pater tabulkového stromu" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Zvýrazní server pod kurzorem myši." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Povolit zvýrazňování" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Jestli se má zakázat možnost rozbalení stromu databáze." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Lišta při procházení tabulky" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Nejvyšší počet tabulek v seznamu nedávných tabulek; nastavte 0 pro vypnutí." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "Nejvyšší počet tabulek v seznamu oblíbených tabulek; nastavte 0 pro vypnutí." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Nedávno použité tabulky" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Jedná se o odkazy Upravit, Kopírovat a Odstranit." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Kde zobrazit odkazy s akcemi při procházení" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Přirozené pořadí" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 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:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Lišta při procházení tabulky" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Mezipaměť pro GZip výstup" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6559,19 +6572,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Výchozí pořadí řazení" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Používat trvalé připojení k databázím MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Trvalé připojení" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6580,11 +6593,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6592,11 +6605,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Varování o rozdílných verzích" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6604,27 +6617,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Varování o klíčových slovech MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Jak zobrazit panely nabídky" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Jak zobrazit akční odkazy" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Zakáže úpravu polí BLOB a BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Chránit binární pole" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6635,126 +6648,126 @@ msgstr "" "historie Java Scriptové rutiny (se zavřením okna ztratíte předchozí " "historii)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Nepřetržitá historie dotazů" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Kolik dotazů se má držet v historii." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Délka historie dotazů" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Nástroje pro konverzi znakových sad" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Pamatovat si řazení u tabulkek" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Výchozí pořadí řazení" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Opakovat záhlaví" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Úpravy v mřížce: činnost pro spuštění" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Pole pro zobrazení v relacích" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Nastavení zobrazení serverů." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Adresář na serveru pro ukládání exportů." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Adresář pro ukládání" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Pokud tuto volbu nepoužíváte, nechte ji prázdnou." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Pořadí ověřování hostitelů" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Nechte volbu prázdnou pro výchozí nastavení." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Pravidla ověřování hostitelů" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Povolit přihlášení bez hesla" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Povolit přihlašování uživatele root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Hodnota sezení" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP doméma" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6764,19 +6777,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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Konfigurační soubor SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Která přihlašovací metoda se má použít." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Typ přihlašování" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6784,11 +6797,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabulka záložek" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6796,32 +6809,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabulka informací o polích" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Zda se má komprimovat připojení k MySQL serveru." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Komprimovat připojení" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Typ připojení" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Heslo kontrolního uživatele" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6829,21 +6842,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Kontrolní uživatel" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 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:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Kontrolní host" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6853,15 +6866,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Kontrolní port" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 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:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6869,15 +6882,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Zakázat použití INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Skrýt databáze" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6885,23 +6898,23 @@ msgstr "" "Nechte prázdné pro vypnutí SQL historie, výchozí hodnota [kbd]pma__history[/" "kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabulka pro historii SQL dotazů" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Jméno počítače, kde běží MySQL server." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Jméno serveru" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL pro odhlášení" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6909,15 +6922,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:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Nejvyšší počet uložených nastavení tabulek" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Tabulka s uloženými dotazy" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6925,13 +6938,13 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro ukládání dotazů, doporučené " "nastavení: [kbd]pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "Sloupců v textové oblasti" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -6943,15 +6956,15 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro PDF schémata, doporučené nastavení: " "[kbd]pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Pokusit se připojit bez hesla." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Připojit bez hesla" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -6960,30 +6973,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Zobrazit jen vybrané databáze" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Heslo pro přihlašování config" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF schémata: tabulka stránek" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -6994,21 +7007,21 @@ msgstr "" "ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: [kbd]" "phpmyadmin[/kbd]." -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Jméno databáze" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Port serveru" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7016,11 +7029,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Naposledy použité tabulky" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7032,13 +7045,13 @@ 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 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Oblíbené tabulky" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7046,11 +7059,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Tabulka s relacemi" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7058,33 +7071,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:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Jméno signon session" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL pro přihlášení" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Socket serveru" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Použít SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7092,13 +7105,13 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro PDF schémata, doporučené nastavení: " "[kbd]pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF schéma: tabulka souřadnic" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7106,11 +7119,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Tabulka s popisem polí" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7118,11 +7131,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabulka pro nastavení rozhraní" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7130,43 +7143,43 @@ msgstr "" "Jestli přidat příkaz DROP DATABASE IF EXISTS jako první při vytváření " "databáze." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Přidat DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Přidat DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Přidat DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Sledované příkazy" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7174,22 +7187,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:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabulka pro sledování SQL dotazů" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 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:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Automaticky vytvářet verze" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7197,11 +7210,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabulka pro uživatelská nastavení" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7211,11 +7224,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Tabulka uživatelů" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7225,11 +7238,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Tabulka skupin uživatelů" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7237,34 +7250,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Tabulka skrývání navigace" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Uživatel pro přihlašování config" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Dlouhé jméno tohoto serveru" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Umožní zobrazit všechny řádky" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7275,73 +7288,73 @@ msgstr "" "neomezuje možnost spustit daný příkaz přímo, jen ovlivňuje zobrazení " "formuláře." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Zobrazit formulář pro změnu hesla" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Zobrazit formulář pro vytvoření databáze" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Zobrazit čas vytvoření" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Zobrazit čas poslední změny" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Zobrazit čas poslední kontroly" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Zobrazit typy polí" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Zobrazí seznam funkcí v editačním režimu." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Zobrazit seznam fukncí" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Zda zobrazit nápovědu nebo ne." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Zobrazit nápovědu" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7349,61 +7362,61 @@ msgstr "" "Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Zobrazit odkaz na phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Zobrazí podrobné informace o MySQL serveru" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Zobrazit SQL dotazy" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Zachovat pole pro dotaz" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Zobrazit statistiky" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Přeskočit zamčené tabulky" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Vypne varování na hlavní stránce pokud se používá Suhosin." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Varování o Suhosinu" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7416,13 +7429,13 @@ 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:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Platnost přihlašovací cookie" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7430,11 +7443,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:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Sloupců v textové oblasti" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7442,31 +7455,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:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Řádků v textové oblasti" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Titulek prohlížeče pokud není nic vybráno." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Výchozí titulek" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "Titulek prohlížeče pokud je vybraný server." -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "Titulek prohlížeče pokud je vybraná tabulka." -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7478,27 +7491,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Adresář pro nahrávání" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Povolit prohledávání přes celou databázi." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Použít prohledávání databáze" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7506,26 +7519,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Povolit záložku Pro vývojáře v nastaveních" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Zkontrolovat nejnovější verzi" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7537,11 +7550,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:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Adresa proxy" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7552,19 +7565,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Uživatel proxy" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Heslo pro přihlášení k serveru proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Heslo proxy" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7572,53 +7585,53 @@ msgstr "" "Povolí [a@http://cs.wikipedia.org/wiki/ZIP_(souborový_formát)]ZIP[/a] " "kompresi pro import a export." -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "Zadejte veřejný klíč pro službu reCaptcha." -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Veřejný klíč reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "Zadejte soukromý klíč pro službu reCaptcha." -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Soukromý klíč reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Odeslat chybová hlášení" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Spuštěné dotazy" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7640,44 +7653,44 @@ msgstr "Přihlašování přes HTTP" msgid "Signon authentication" msgstr "Přihlašování signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV pomocí LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Sešit OpenDocument" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Rychlý" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Vlastní" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Nastavení exportu databází" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV pro MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Text OpenDocument" @@ -7902,20 +7915,20 @@ msgstr "Nelze počítat řádky v nebufferované odpovědi" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Žádné heslo" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Heslo:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Heslo znovu:" @@ -8053,8 +8066,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít " "libovolné řetězce pro formátování data a času. Dále budou provedena " @@ -8610,8 +8623,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -9077,7 +9090,7 @@ msgstr "Odhlásit se" msgid "phpMyAdmin documentation" msgstr "Dokumentace phpMyAdmina" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Znovu nahrát navigační panel" @@ -9743,8 +9756,8 @@ msgstr "Vítejte v %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -9975,7 +9988,7 @@ msgstr "Přidat jména polí na první řádek:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Počítač:" @@ -10999,22 +11012,22 @@ msgstr "" "cnf). Pokud ne, prosím přidejte následující řádek to sekce [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Jméno uživatele:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Jméno uživatele" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Heslo" @@ -11042,10 +11055,10 @@ msgstr "ID serveru" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Počítač" @@ -11059,38 +11072,38 @@ msgstr "" "report-host=host_name." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Jakýkoliv počítač" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokální" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Tento počítač" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Jakýkoliv uživatel" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Použít textové pole:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Použít tabulku Host" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11099,7 +11112,7 @@ msgstr "" "hodnoty uložené v tabulce Host." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Heslo znovu" @@ -11833,7 +11846,7 @@ msgstr "Žádná" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Skupina uživatele" @@ -11903,14 +11916,14 @@ msgstr "Omezuje počet současných připojení uživatele." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Poznámka: Názvy oprávnění MySQL jsou uváděny anglicky." @@ -11919,7 +11932,7 @@ msgid "Administration" msgstr "Správa" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globální oprávnění" @@ -11928,7 +11941,7 @@ msgid "Global" msgstr "Globální" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" @@ -11947,260 +11960,260 @@ msgstr "" "Umožňuje přidávat uživatele a oprávnění bez znovunačítání tabulek " "s oprávněními." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Přihlašování" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Použít textové pole" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" "Přístupové údaje pro tohoto uživatele již existují (možná pro jiný počítač)." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Neměnit heslo" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pro %s bylo úspěšně změněno." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Byla zrušena práva pro %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Přidat uživatele" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Databáze pro uživatele" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Přidělit všechna oprávnění na databázi „%s“." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Uživatelé mající přístup k „%s“" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Uživatel byl přidán." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Uživatel" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Přidělování" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Nebyl nalezen žádný uživatel." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Jakýkoliv" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globální" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "závislé na databázi" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "maska" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "závislé na tabulce" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Upravit oprávnění" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Zrušit" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Upravit skupinu" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… zachovat původního uživatele." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… smazat původního uživatele ze všech tabulek." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… odebrat všechna oprávnění původnímu uživateli a poté ho smazat." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… smazat uživatele a poté znovu načíst oprávnění." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Vytvořit nového uživatele se stejnými oprávněními a …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Oprávnění pro jednotlivá pole" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Přidat oprávnění pro databáze:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Zástupné znaky _ a % by měly být escapovány pomocí \\ pokud si je přejete " "použít jako znak." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Přidat oprávnění pro tabulku:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Odstranit vybrané uživatele" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Odstranit databáze se stejnými jmény jako uživatelé." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Musíte vybrat uživatele, které si přejete odstranit!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Načítám oprávnění" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Vybraní uživatelé byli úspěšně odstraněni." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Byla aktualizována oprávnění pro %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Odstraňuji %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Uživatel %s již existuje!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Oprávnění pro %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nový" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Upravit oprávnění:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Přehled uživatelů" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Uživatel byl přidán." @@ -13994,21 +14007,21 @@ msgstr "Velikost mezipaměti klíčů" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Typ klíče:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Uživatel:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Komentář:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -14352,8 +14365,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" -"sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " +"%sNastavovacího skriptu%s." #: prefs_manage.php:321 msgid "Save to browser's storage" @@ -14775,8 +14788,8 @@ msgid "" "You have a slow query rate of %s per hour, you should have less than 1%% per " "hour." msgstr "" -"Četnost pomalých dotazů na tomto serveru je %s za hodinu, měla by být pod 1%" -"%." +"Četnost pomalých dotazů na tomto serveru je %s za hodinu, měla by být pod " +"1%%." #: libraries/advisory_rules.txt:77 msgid "Long query time" @@ -15041,8 +15054,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "V současné době je volno %s%% mezipaměti. Tato hodnota by se měla držet nad " "80%%" @@ -15190,11 +15203,11 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" -"%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod 10%" -"%." +"%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod " +"10%%." #: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" diff --git a/po/cy.po b/po/cy.po index 5d816dd544..1544f0e376 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,15 +6,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-14 19:10+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh \n" +"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" "Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : " "(n==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Generator: Weblate 2.1-dev\n" @@ -76,7 +76,7 @@ msgstr "Sylwadau tabl" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -100,7 +100,7 @@ msgstr "Colofn" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -156,8 +156,8 @@ msgid "Links to" msgstr "Cysylltu i" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -186,13 +186,13 @@ msgstr "Cynradd" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -215,13 +215,13 @@ msgstr "Na" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -277,14 +277,14 @@ msgstr "" "ddarganfod pam." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabl" @@ -297,7 +297,7 @@ msgid "Rows" msgstr "Rhesi" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Maint" @@ -399,9 +399,9 @@ msgstr "Statws" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -609,15 +609,15 @@ msgstr "Ychwanegwch weinydd newydd" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -650,11 +650,11 @@ msgstr "" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth" "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn." @@ -737,7 +737,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Nôl" @@ -762,7 +762,7 @@ msgid "General Settings" msgstr "Nodweddion perthynas cyffredinol" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Newid cyfrinair" @@ -859,7 +859,7 @@ msgstr "Gwybodaeth y fersiwn" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dogfennaeth" @@ -1125,7 +1125,7 @@ msgstr "Indecs" msgid "Edit Index" msgstr "Golygu'r rhes nesaf" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s column(s)" msgid "Add %s column(s) to index" @@ -1161,7 +1161,7 @@ msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1198,12 +1198,12 @@ msgstr "Mae enw'r gwesteiwr yn wag!" msgid "The user name is empty!" msgstr "Mae enw'r defnyddiwr yn wag!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Mae'r cyfrinair yn wag!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" @@ -1424,7 +1424,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1738,7 +1738,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1992,7 +1992,7 @@ msgstr "Dangos ymholiad mewnosod" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2268,7 +2268,7 @@ msgstr "Datganiad diffiniad data" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Anwybyddu" @@ -2454,7 +2454,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Dangos pob" @@ -2570,7 +2570,7 @@ msgstr "Indecsau" msgid "Show hidden navigation tree items." msgstr "Dangos grid" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Use text field" @@ -3095,16 +3095,16 @@ msgid "Delete" msgstr "Dileu" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3241,7 +3241,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3683,8 +3683,8 @@ msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." @@ -3723,6 +3723,7 @@ msgstr "Gyda'r dewis:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3738,12 +3739,12 @@ msgstr "Newid" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3942,7 +3943,7 @@ msgstr "" "ohonyn nhw." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Gweinydd" @@ -3957,11 +3958,11 @@ msgstr "Dangos" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3977,7 +3978,7 @@ msgstr "Strwythur" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4003,9 +4004,9 @@ msgstr "Mewnosod" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Breintiau" @@ -4067,9 +4068,9 @@ msgid "Central columns" msgstr "Ychwanegu/Dileu colofnau" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Cronfeydd Data" @@ -4199,7 +4200,7 @@ msgid "Recent" msgstr "Ailosod" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4277,7 +4278,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4659,14 +4660,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4922,7 +4923,7 @@ msgstr "Uchaf: %s%s" msgid "MySQL said: " msgstr "Dywedodd MySQL: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Esbonio SQL" @@ -4934,7 +4935,7 @@ msgstr "Sgipio Esbonio SQL" msgid "Without PHP Code" msgstr "Heb God PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Creu Cod PHP" @@ -5060,13 +5061,13 @@ msgstr "Disgrifiad" msgid "Use this value" msgstr "Defnyddiwch y gwerth hwn" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5491,7 +5492,7 @@ msgid "Set value: %s" msgstr "Gosod gwerth: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Adfer gwerth diofyn" @@ -5867,77 +5868,85 @@ msgstr "Tab a ddengys wrth fyned i dabl" msgid "Default table tab" msgstr "Tab tabl diofyn" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 #, fuzzy #| msgid "Include table caption" msgid "Whether the table structure actions should be hidden." msgstr "Cynnwys pennawd y tabl" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Include table caption" msgid "Hide table structure actions" msgstr "Cynnwys pennawd y tabl" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Dangos gweinyddion fel rhestr" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Partition maintenance" msgid "Disable multi table maintenance" msgstr "Cynhaliaeth ymraniadau" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add constraints" msgid "Use %s statement" msgstr "Ychwanegwch cyfyngiadau" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Cadw fel ffeil" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Set nodau y ffeil" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Fformat" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Cywasgiad" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5947,74 +5956,74 @@ msgstr "Cywasgiad" msgid "Put columns names in the first row" msgstr "Rhoi enwau colofnau yn y rhes gyntaf" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" msgstr "Amgaewyd colofnau gan" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" msgstr "Colofnau wedi'u dianc gan" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "Amnewid NULL gan" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 #, fuzzy #| msgid "Remove CRLF characters within columns" msgid "Remove CRLF characters within columns" msgstr "Tynnu nodau CRLF tu fewn colofnau" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Terfynwyd colofnau gan" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Terfynwyd llinellau gan" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Argraffiad Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Templed enw cronfa ddata" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Templed enw gweinydd" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Templed enw tabl" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6026,654 +6035,654 @@ msgstr "Templed enw tabl" msgid "Dump table" msgstr "%s tabl" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Cynnwys pennawd y tabl" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Pennawd y tabl" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 #, fuzzy #| msgid "Include table caption" msgid "Continued table caption" msgstr "Cynnwys pennawd y tabl" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Allwedd y label" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Math MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Perthnasau" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Math allbwn" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Cadw ar y gweinydd" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Trosysgrifo ffeil(iau) sy'n bodoli yn barod" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Cofio templed enw ffeil" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Modd cytunedd SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Creu tabl mewn cronfa ddata %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Allforio" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Automatic recovery mode" msgid "Customize browse mode." msgstr "Modd adferiad awtomatig" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Query results operations" msgid "Customize default options." msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Use text field" msgid "Customize edit mode." msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Query results operations" msgid "Customize default export options." msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Nodweddion" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generadu" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Query results operations" msgid "Customize default common import options." msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases statistics" msgid "Databases display options." msgstr "Ystadegau cronfeydd data" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "Ffrâm llywio" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Use text field" msgid "Customize appearance of the navigation panel." msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Gweinyddion" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Relational display column" msgid "Servers display options." msgstr "Colofn dangosydd perthynol" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Table caption" msgid "Tables display options." msgstr "Pennawd y tabl" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "Prif ffrâm" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page name" msgid "Page titles" msgstr "Enw'r dudalen" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Authenticating…" msgid "Authentication" msgstr "Yn dilysu…" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authenticating…" msgid "Authentication settings." msgstr "Yn dilysu…" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "MySQL connection collation" msgid "Enter server connection parameters." msgstr "Coladiad cysylltiad MySQL" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Use text field" msgid "Customize navigation panel" msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Use text field" msgid "Customize main panel" msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "Show SQL queries" msgid "SQL queries settings." msgstr "Dangos ymholiadau SQL" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Use text field" msgid "Customize startup page." msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "Cronfeydd Data" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "Cronfeydd Data" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Sgema perthynol" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Maint papur" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields." msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Rhybudd" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put columns names in the first row" msgid "Column names in first row" msgstr "Rhoi enwau colofnau yn y rhes gyntaf" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "Nifer yr ymholiadau i'w neidio o'r dechrau" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6681,645 +6690,645 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Use text field" msgid "Maximum items on first level" msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Dangos grid" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Navigation frame" msgid "Show logo in navigation panel." msgstr "Ffrâm llywio" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Pennawd y tabl" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Tablau heb dracio " -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Pennawd y tabl" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Ailenwi tabl i" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Trwsio edafedd" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Colofn dangosydd perthynol" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Relational display column" msgid "For display Options" msgstr "Colofn dangosydd perthynol" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authenticating…" msgid "Authentication method to use." msgstr "Yn dilysu…" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Unrhyw westeiwr" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Unrhyw westeiwr" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, 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:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Cuddio cronfeydd data" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabl hanes ymholiadau SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, 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:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Enw gwesteiwr y gweinydd" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL allgofnodi" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns table" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "Ceisiwch â chysylltu heb gyfrinair" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Cysylltwch heb gyfrinair" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 #, fuzzy #| msgid "" #| "n use MySQL wildcard characters (% and _), escape them if you want use ir " @@ -7333,349 +7342,349 @@ msgstr "" "ydych am eu defnyddio'n llythrennol, h.y. defnyddiwch 'my\\_db' ac nid " "'my_db'" -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Cyfrinair am 'config auth'" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "enw cronfa ddata" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Dadansoddi tabl" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Newidynnau" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Soced gweinydd" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Defnyddio SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "Sgena PDF: cyfesurynnau tabl" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Dangos tabl colofnau" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Ychwanegu DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Ychwanegu DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Ychwanegu DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Datganiadau i'w tracio" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabl tracio ymholiadau SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Defnyddiwch Dablau" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Defnyddiwch Dabl Gwesteiwyr" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Dangos ffurflen newid cyfrinair" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Dangos ffurflen creu cronfa ddata" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show versions" msgid "Show Creation timestamp" msgstr "Dangos fersiynau" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show function fields" msgid "Show field types" msgstr "Dangos meysydd swyddogaeth" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Dangos meysydd swyddogaeth" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Dangos grid" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7687,115 +7696,115 @@ msgstr "" "Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Dangos cysylltiad i phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Dangos ymholiadau SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "in query" msgid "Retain query box" msgstr "mewn ymholiad" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Dangos ystadegau" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Neidio tablau ar glo" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Tab tabl diofyn" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7803,52 +7812,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Cyfeiriadur lanlwytho" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Defnyddio chwiliad cronfa ddata" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Gwiriwch y fersiwn diweddaraf" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7856,86 +7865,86 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "Enw defnyddiwr" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Cyfrinair" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Execute bookmarked query" msgid "Enter executes queries in console" msgstr "Gweithredu ymholiad a glustnodwyd" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Failed to write file to disk." msgid "Enable Zero Configuration mode" @@ -7965,50 +7974,50 @@ msgstr "Yn dilysu…" msgid "Signon authentication" msgstr "Yn dilysu…" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Taenlen Open Document" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Lliw cwstwm" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 #, fuzzy #| msgid "Databases statistics" msgid "Database export options" msgstr "Ystadegau cronfeydd data" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV ar gyfer MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8260,20 +8269,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Dim Cyfrinair" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Cyfrinair:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8435,8 +8444,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8966,8 +8975,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9454,7 +9463,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "Dogfennaeth phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Navigation frame" msgid "Reload navigation panel" @@ -10144,11 +10153,11 @@ msgstr "Croeso i %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1" -"$sgript gosod%2$s er mwyn ei chreu." +"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r " +"%1$sgript gosod%2$s er mwyn ei chreu." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10412,7 +10421,7 @@ msgstr "Rhoi enwau colofnau yn y rhes gyntaf" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11385,7 +11394,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "Username:" msgid "User name:" @@ -11393,16 +11402,16 @@ msgstr "Enw defnyddiwr:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Cyfrinair" @@ -11432,10 +11441,10 @@ msgstr "ID y Gweinydd" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Gwesteiwr" @@ -11447,47 +11456,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Unrhyw westeiwr" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lleol" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Y Gwesteiwr Hwn" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Unrhyw ddefnyddiwr" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Defnyddiwch faes testun" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Defnyddiwch Dabl Gwesteiwyr" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Ail-deipiwch" @@ -12291,7 +12300,7 @@ msgstr "Dim" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12358,14 +12367,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12374,7 +12383,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -12383,7 +12392,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -12400,264 +12409,264 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Defnyddiwch faes testun" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Unrhyw ddefnyddiwr" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Defnyddiwr" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Golygu gweinydd" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Privileges" msgid "Edit Privileges:" msgstr "Breintiau" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Overview" msgid "Users overview" msgstr "Gorolwg" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -14424,23 +14433,23 @@ msgstr "Maint yr ystorfa indecs" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Defnyddiwr" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Sylw" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15491,8 +15500,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15625,8 +15634,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -16892,8 +16901,8 @@ msgstr "" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata %" -#~ "s?" +#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata " +#~ "%s?" #~ msgid "View image" #~ msgstr "Gweld delwedd" diff --git a/po/da.po b/po/da.po index 20c22da90c..b5d1200549 100644 --- a/po/da.po +++ b/po/da.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-16 19:34+0200\n" "Last-Translator: Jonas \n" "Language-Team: Danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.3-dev\n" @@ -66,7 +66,7 @@ msgstr "Tabelkommentarer:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -90,7 +90,7 @@ msgstr "Kolonnenavn" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -146,8 +146,8 @@ msgid "Links to" msgstr "Linker til" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -176,13 +176,13 @@ msgstr "Primær" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -205,13 +205,13 @@ msgstr "Nej" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -262,14 +262,14 @@ msgstr "" "hvorfor%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabel" @@ -282,7 +282,7 @@ msgid "Rows" msgstr "Rækker" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Størrelse" @@ -371,9 +371,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -569,15 +569,15 @@ msgstr "Tilføj geometri" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -610,8 +610,8 @@ msgstr "Ukomplette parametre" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Du har sandsynligvis forsøgt at overføre en fil som er for stor. Se venligst " "%sdokumentationen%s for måder at omgå denne begrænsning." @@ -699,7 +699,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Tilbage" @@ -722,7 +722,7 @@ msgid "General Settings" msgstr "Generelle indstillinger" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Skift adgangskode" @@ -795,7 +795,7 @@ msgstr "Versionsinformation:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentation" @@ -1047,7 +1047,7 @@ msgstr "Tilføj indeks" msgid "Edit Index" msgstr "Redigér indeks" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Tilføj %s kolonne(r) til indeks" @@ -1074,7 +1074,7 @@ msgstr "Du skal tilføje mindst en kolonne." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Forhåndsvis SQL" @@ -1103,12 +1103,12 @@ msgstr "Der er intet værtsnavn!" msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Adgangskoden er tom!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "De to adgangskoder er ikke ens!" @@ -1309,7 +1309,7 @@ msgstr "Tilføj mindst en variabel til serien!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1601,7 +1601,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1815,7 +1815,7 @@ msgstr "Vis forespørgselsbox" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1855,8 +1855,8 @@ msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -"Ingen kolonner i centerlisten. Vær sikker på at centerlisten for databasen %" -"s har kolonner der ikke er i aktuel tabel." +"Ingen kolonner i centerlisten. Vær sikker på at centerlisten for databasen " +"%s har kolonner der ikke er i aktuel tabel." #: js/messages.php:315 msgid "See more" @@ -2066,7 +2066,7 @@ msgstr "Datapunkt-indhold" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorer" @@ -2244,7 +2244,7 @@ msgstr "Klik på pilen for valgboks
for at skifte kolonnens synlighed." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Vis alle" @@ -2344,7 +2344,7 @@ msgstr "Skjul panel" msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigationstræet." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Link med hovedpanel" @@ -2845,16 +2845,16 @@ msgid "Delete" msgstr "Slet" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2969,7 +2969,7 @@ msgid "During current session" msgstr "Under nuværende session" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3346,8 +3346,8 @@ msgstr "Din SQL-forespørgsel blev udført korrekt." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s." @@ -3383,6 +3383,7 @@ msgstr "Med det markerede:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3398,12 +3399,12 @@ msgstr "Ret" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3595,7 +3596,7 @@ msgstr "" "sikkert fjernes." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3610,11 +3611,11 @@ msgstr "Visning" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3630,7 +3631,7 @@ msgstr "Struktur" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3656,9 +3657,9 @@ msgstr "Indsæt" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegier" @@ -3718,9 +3719,9 @@ msgid "Central columns" msgstr "Centerkolonner" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Databaser" @@ -3828,7 +3829,7 @@ msgid "Recent" msgstr "Seneste" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Favorit tabeller" @@ -3899,7 +3900,7 @@ msgstr "Sortering" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4262,20 +4263,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Et lille, flydende decimaltal. Tilladte værdier er -3.402823466E+38 til -" -"1.175494351E-38, 0, samt 1.175494351E-38 til 3.402823466E+38" +"Et lille, flydende decimaltal. Tilladte værdier er -3.402823466E+38 til " +"-1.175494351E-38, 0, samt 1.175494351E-38 til 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Et dobbeltpræcisions, flydende decimaltal. Tilladte værdier er -" -"1.7976931348623157E+308 til -2.2250738585072014E-308, 0, samt " +"Et dobbeltpræcisions, flydende decimaltal. Tilladte værdier er " +"-1.7976931348623157E+308 til -2.2250738585072014E-308, 0, samt " "2.2250738585072014E-308 til 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4565,7 +4566,7 @@ msgstr "Maksimum størrelse: %s%s" msgid "MySQL said: " msgstr "MySQL returnerede: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Forklar SQL" @@ -4577,7 +4578,7 @@ msgstr "Spring over Forklar SQL" msgid "Without PHP Code" msgstr "Uden PHP-kode" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Fremstil PHP-kode" @@ -4690,13 +4691,13 @@ msgstr "Beskrivelse" msgid "Use this value" msgstr "Brug denne værdi" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5097,7 +5098,7 @@ msgid "Set value: %s" msgstr "Indstil værdien %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Gendan standardværdi" @@ -5222,10 +5223,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Hvis du føler at det er nødvendigt, benyt da yderligere sikring - %" -"sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-baseret " -"beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en udbyder med " -"mange tusinde brugere." +"Hvis du føler at det er nødvendigt, benyt da yderligere sikring - " +"%sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-" +"baseret beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en " +"udbyder med mange tusinde brugere." #: libraries/config/ServerConfigChecks.class.php:434 #, php-format @@ -5239,8 +5240,8 @@ msgstr "" "Du har sat [kbd]config[/kbd] autentifikation og inkluderet brugernavn og " "adgangskode for auto-login, hvilket er ikke en ønskværdig konfiguration for " "produktionssystemer. Enhver som kender eller gætter din phpMyAdmin URL kan " -"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt %" -"sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]." +"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt " +"%sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]." #: libraries/config/ServerConfigChecks.class.php:440 #, php-format @@ -5517,23 +5518,35 @@ msgstr "Fane som skal vises, når man går ind i en tabel." msgid "Default table tab" msgstr "Standard tabel-fane" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Brug \"backquotes\" omkring tabel- og feltnavne" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Brug \"backquotes\" omkring tabel- og feltnavne" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Hvorvidt tabelstruktur handlinger skal være skjulte." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Skjul handlinger for tabelstruktur" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Vis servere på en liste i stedet for i en valgboks." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Vis servere på en liste" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5541,11 +5554,11 @@ msgstr "" "Deaktiver masseoperationer for tabelvedligeholdelse såsom optimering eller " "reperation af tabllerne i en database." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Deaktiver vedligeholdelse af flere tabeller" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5553,39 +5566,39 @@ msgstr "" "Sæt antallet af sekunder, som et script må være om at køre ([kbd]0[/kbd] er " "lig med ingen tidsgrænse)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maksimal eksekveringstid" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Tilføj %s forespørgsel" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Send (download)" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Filens tegnsæt" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Komprimering" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5595,60 +5608,60 @@ msgstr "Komprimering" msgid "Put columns names in the first row" msgstr "Indsæt feltnavne i første række" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Kolonner indrammet med" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Kolonner escaped med" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Erstat NULL med" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Fjern CRLF-tegn i kolonner" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Kolonner afsluttes med" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Linjer afsluttet med" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel-udgave" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Skabelon for databasenavn" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Skabelon for servernavn" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Skabelon for tabelnavn" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5657,137 +5670,137 @@ msgstr "Skabelon for tabelnavn" msgid "Dump table" msgstr "Dump tabel" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Inkluder tabeloverskrift" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Tabeloverskrift" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Fortsat tabeloverskrift" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Mærke nøgle" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relationer" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Eksporttype" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Gem på server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Overskriv eksisterende fil(er)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Husk skabelon for filnavn" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Brug \"backquotes\" omkring tabel- og feltnavne" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitetstilstand" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Indstillinger til CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Oprettet/Opdateret/Tjek datoer" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Brug forsinkede indsættelser" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Slå fremmednøgle-checks fra" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Eksportér visninger som tabeller" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Tilføj %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Brug hexadecimal for BINÆR & BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Brug ignorer inserts" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Syntaks der bruges, når der indsættes data" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maksimal længde på oprettet forespørgsel" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Eksporttype" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Indlejr eksport i en transaktion" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Angiv eksporttidspunktet i UTC (Universal Time Coordinated)" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Gennemtving sikker forbindelse mens phpMyAdmin bruges." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Gennemtving SSL-forbindelse" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5795,144 +5808,144 @@ msgstr "" "Sorteringsrækkefølge for elementer i en dropdown boks med fremmede nøgler; " "[kbd]content[/kbd] er de refererede data, [kbd]id[/kbd] er nøglens værdi." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Rækkefølge for fremmednøgler i valgboks" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Der vil blive brugt en valgboks, hvis færre elementer er til stede." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Øvre grænse for fremmednøgle" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Gennemsynstilstand" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Tilpas for gennemsynstilstand." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Tilpas standardindstillinger." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV (kommasepareret)" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Udvikler" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Indstillinger for phpMyAdmin udviklere." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Redigeringstilstand" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Tilpas redigeringstilstand." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Standardindstillinger for eksport" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Tilpas standardindstillinger for eksport." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Karakteristika" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Generelt" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Bestem indstillinger for nogle af de mest anvendte valgmuligheder." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Standarder for import" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Tilpas standardindstillinger for import." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Import / eksport" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" "Bestem indstillinger for importerings- og eksporteringsmapper samt " "komprimering." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Indstillinger for visning af databaser." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigationspanel" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Tilpas navigationspanelets udseende." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servere" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Indstillinger for visning af servere." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Indstillinger for visning af tabeller." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Hovedpanel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Andre kerneindstillinger" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Indstillinger som ikke passer ind andre steder." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Sidetitler" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5940,19 +5953,19 @@ msgstr "" "Angiv browserens tekst i titelbaren. Se [doc@cfg_TitleTable]dokumentationen[/" "doc] for tekststrenge der indeholder særlige værdier." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Forespørgselsvindue" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Tilpas indstillinger for forespørgselsvindue" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Sikkerhed" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -5960,23 +5973,23 @@ msgstr "" "Bemærk venligst at phpMyAdmin blot er en brugerflade og at den ikke " "begrænser mulighederne i MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Grundlæggende indstillinger" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autentifikation" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Indstillinger for autentifikation." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Serverkonfiguration" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -5984,15 +5997,15 @@ msgstr "" "Avanceret serverkonfiguration. Lad være med at ændre disse indstillinger med " "mindre du ved, hvad de betyder." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Indtast parametre for tilslutning til server." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Lagring af konfiguration" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6002,11 +6015,11 @@ msgstr "" "funktioner. Se dokumentationen for [doc@linked-tables]phpMyAdmin " "configuration storage[/doc]." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Ændrer sporing" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6014,109 +6027,109 @@ msgstr "" "Sporing af ændringer i databasen er udført. phpMyAdmin configuration storage " "er krævet." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Tilpas eksport-indstillinger" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Tilpas import-indstillinger" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Tilpas navigationspanelet" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Tilpas hovedpanelet" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL-forespørgsler" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL Query-boks" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Tilpas links vist i SQL Query-boksen." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Indstillinger til SQL-forespørgsler." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Opstart" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Tilpas opstartside." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Database-struktur" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Vælg hvilke detaljer, der skal vises i database-strukturen (liste af " "tabeller)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Tabel-struktur" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Indstillinger for tabel-strukturen (liste af kolonner)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Faner" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Vælg hvordan du ønsker at fanerne skal fungere." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Vis relationel skema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Papirstørrelse" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Tekstfelter" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Tilpas tekstfelter." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Tilpas standardindstillinger" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Advarsler" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Deaktiver nogle af advarslerne, som phpMyAdmin viser." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6124,15 +6137,15 @@ msgstr "" "Aktivér [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] komprimering for " "import og eksport-funktionerne." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Yderligere parametre til iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6140,11 +6153,11 @@ msgstr "" "Hvis aktiveret, vil phpMyAdmin fortsætte med at udføre efterfølgende SQL-" "forespørgsler selvom et eller flere af dem fejler." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignorer flere efterfølgende fejl i udtryk" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6154,28 +6167,28 @@ msgstr "" "udløber. Dette kan være godt ved store import-filer, men kan afbryde " "transaktioner." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Delvis import: tillad afbrydelse" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Slå fremmednøgle-checks fra" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Afbryd ikke ved fejl i INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Erstat data i tabellen med filens data" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6183,69 +6196,69 @@ msgstr "" "Standard format, vær opmærksom på, at denne liste afhænger af sted (databae, " "tabel) og kun SQL er altid tilgængelig." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Format på importeret fil" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Brug LOCAL nøgleord" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Indsæt feltnavne i første række" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Importér ikke tomme rækker" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importér valutaer ($5.00 til 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importér procenter med korrekte decimaler (12.00% bliver til .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Antal forespørgsler, der skal springes over fra start." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Delvis import: spring over forespørgsler" # zero = null? -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Brug ikke AUTO_INCREMENT for 0-værdier" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Skydernes udgangspunkt" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Hvor mange rækker kan der indsættes på een gang." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Antal indsatte rækker" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "Maksimalt antal tegn vist i ikke-numerisk kolonne ved gennemsyn." # karakterer gives i skolen eller er personer i film -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Begræns antal tegn i kolonne" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6255,11 +6268,11 @@ msgstr "" "logout kun for den aktuelle server.Sættes denne til FALSE, kan man let " "glemme at logge ud fra andre servere, når man er forbundet til flere servere." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Slet alle cookies, når der logges ud" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6267,11 +6280,11 @@ msgstr "" "Definer om den foregående login skal gentages eller ej i [kbd]cookie[/kbd] " "autentifikationstilstand." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Gendan brugernavn" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6283,48 +6296,48 @@ msgstr "" "blive slettet så snart browservinduet lukkes. Dette anbefales for ikke-" "sikrede omgivelser." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Login cookie sletning" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Definerer hvor længe (i sekunder) en login cookie er gyldig." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Gyldighed for login cookie" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Dobbelt størrelse for tekstboks for LONGTEXT kolonner." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Større tekstboks for LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Maksimalt antal tegn, når en SQL-forespørgsel vises." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Maksimal vist SQL-længde" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Brugere kan ikke sætte en højere værdi" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Maksimalt antal databaser som vises i listen med databaser." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Maksimalt antal databaser" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6332,21 +6345,21 @@ msgstr "" "Antallet af elementer som kan vises i øverste niveau på hver side i " "navigationstræet." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Maksimum for elementer i første niveau" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "Antallet af elementer som kan vises i hver side i navigationstræet." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Maksimum for elementer i gren" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6354,19 +6367,19 @@ msgstr "" "Antal rækker vist, når man kigger på et sæt resultater. Hvis resultatet " "indeholder flere rækker, links til \"Forrige\" og \"Næstet\" vil blive vist." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Maksimum af antal viste rækker" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Maksimalt antal tabeller vist i tabellisten." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maksimalt antal tabeller" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6374,40 +6387,40 @@ msgstr "" "Antallet af bytes et script må allokere, fx. [kbd]32M[/kbd] ([kbd]0[/kbd] " "for ubegrænset)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Hukommelsesgrænse" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "I navigationspanelet erstattes databasetræet med en valgfunktion" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Vis databasenavigationen som en træstruktur" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Link med hovepanelet ved at fremhæve den nuværende database eller tabel." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Vis logoet i navigationspanel." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Vis logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL som logoet i navigationspanelet vil pege på." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Logo link-URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6415,27 +6428,27 @@ msgstr "" "Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt ([kbd]" "new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Henvisning for placering af logo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Vis servervalg øverst i venstre panel." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Vis servervalg" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Mål for hurtigt valg ikon" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Mål for det andet hurtigvalg-ikon" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6443,111 +6456,111 @@ msgstr "" "Angiver det mindste antal af elementer (tabeller, visninger, rutiner og " "begivenheder), der skal indgå for at vise en filterboks." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Det mindste antal af elementer, der skal til for at vise filterboksen" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Mindste antal databaser, der skal vises i database-filterboksen" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" "Gruppér elementer i navigationstræet (iht. separator defineret nedenfor)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Gruppér elementer i træet" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Streng, der inddeler databaser i træ." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Separator til databaseinddeling" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Streng, der inddeler tabeller i træ." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Separator til tabelinddeling" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maksimal dybde på databasetræ" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Fremhæv server under musepil." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Aktivér fremhævning" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" "Om der skal eller ikke skal tilbydes udvidelse af træ i navigationspanelet." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Slå udfoldelse af navigationstræ til" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Højeste antal af tidligere anvendte tabeller; sæt til 0 for at deaktivere." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "Højeste antal af tidligere anvendte tabeller; sæt til 0 for at deaktivere." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Tidligere anvendte tabeller" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Dette er Ret, Kopi og Slet links." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Hvor links til tablerækker skal vises" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Naturlig rækkefølge" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Brug kun ikoner, kun tekst eller begge." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Tabelbaseret navigationsbjælke" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Buffering af GZip-output" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6555,19 +6568,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Standard sorteringsrækkefølge" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Brug vedvarende forbindelser til MySQL databaser." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Vedvarende forbindelser" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6577,11 +6590,11 @@ msgstr "" "hvis nogen af de påkrævede tabeller i phpMyAdmin configuration storage ikke " "kunne findes." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Manglende phpMyAdmin configuration storage tabeller" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6589,11 +6602,11 @@ msgstr "" "Deaktiver standardadvarslen som vises, hvis der registreres en forskel " "mellem MySQL-biblioteket og serveren." -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Advarsel om server/bibliotek-forskel" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6601,27 +6614,27 @@ msgstr "" "Deaktiver standardadvarslen, som vises på struktursiden, hvis kolonnenavne i " "en tabel er reserverede MySQL-ord." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Advarsel om MySQL-reserverede ord" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Sådan vises menufanerne" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Sådan vises forskellige hændelseshenvisninger" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Tillad ikke redigering af BLOB og BINARY kolonner." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Beskyt binære kolonner" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6631,104 +6644,104 @@ msgstr "" "configuration storage). Hvis deaktiveret bruges JS-rutiner til at vise " "forespørgselshistorik (mistes når vinduet lukkes)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Permanent forespørgselshistorie" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Hvor mange forespørgsler er gemt i historikken." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Længde på forespørgselshistorik" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Omkodningsværktøj" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Husk tabellens sortering" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Forvalgt sorteringsrækkefølge for primær nøgle" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Gentag overskrifter" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Gitter-redering: trigger/udløser-handling" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Relationel visning" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "For visningsindstillinger" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Gitter-redigering: gem alle redigerede celler med det samme" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Mappe, hvor eksporterede data kan gemmes på serveren." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Gemmemappe" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Efterlades blank, hvis ikke brugt." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Autorisationsrækkefølge for vært" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Efterlades blank for standardværdi." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Host autorisationsregler" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Tillad login uden adgangskode" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Tillad root login" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Tidszone for session" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" @@ -6736,15 +6749,15 @@ msgstr "" "Angiver den gældende tidszone; denne er muligvis forskellige fra dén som " "findes på din databaseserver" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6754,19 +6767,19 @@ msgstr "" "autentifikation[/a] (ikke fundet i din dokumentrod; forslag: /etc/swekey." "conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey konfigurationsfil" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Metode for autentifikation." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Autentifikationstype" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6774,11 +6787,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Bogmærketabel" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6786,31 +6799,31 @@ msgstr "" "Efterlades tom for ingen kolonnekommentar-/mime-typer, forslag: [kbd]" "pma_column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabel for kolonneinformation" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Komprimer forbindelse til MySQL server." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Komprimer forbindelse" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Forbindelsestype" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Adgangskode for kontrolbruger" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6818,11 +6831,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Kontrolbruger" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6830,11 +6843,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:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Kontrolvært" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6845,15 +6858,15 @@ msgstr "" "standardporten, eller den allerede angivne port, hvis kontrolværten er lig " "værten." -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Kontrolport" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Gem databaser som matcher regulært udtryk (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6861,15 +6874,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Deaktiver brug af INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Skjul databaser" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6877,23 +6890,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:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL forespørgselsshistoriktabel" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Servernavn, hvor MySQL server kører." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Servernavn" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Log ud URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6901,15 +6914,15 @@ msgstr "" "Begrænser antallet af tabel-præferencer som lagres i databasen. De ældte " "poster fjernes automatisk." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Maksimalt antal tabel-præferencer, der lagres" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "QBE gemte søger tabel" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6917,11 +6930,11 @@ msgstr "" "Efterlades tom for at undlade understøttelse af QBE-skematik, forslag: [kbd]" "pma_pdf_pages[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Center tabelkolonner" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -6929,15 +6942,15 @@ msgstr "" "Efterlades tom for at undlade understøttelse af kolonner, forslag: [kbd]" "pma_table_coords[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Prøv at forbinde uden adganskode." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Forbind uden adgangskode" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -6946,30 +6959,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Vis kun listede databaser" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Lades tom hvis du ikke bruger config auth." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Adgangskode for config auth" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF-skematik: pages tabel" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -6979,20 +6992,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Databasenavn" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Serverport" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7000,11 +7013,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Senest benyttede tabel" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7012,11 +7025,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Favorit tabeller" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7024,11 +7037,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relationstabel" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7036,31 +7049,31 @@ msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types[/" "a] for et eksempel." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Login sessionsnavn" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Login URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Server-sokkel" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Aktiver SSL for forbindelse til MySQL-serveren." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Brug SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7068,11 +7081,11 @@ msgstr "" "Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: [kbd]" "pma_table_coords[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Designer og PDF-skema: tabelkoordinater" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7080,11 +7093,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Visningskolonnetabel" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7092,11 +7105,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "UI præference tabel" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7104,11 +7117,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Tilføj DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7116,11 +7129,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Tilføj DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7128,20 +7141,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Tilføj DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Forespørgsler, der skal spores" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7149,22 +7162,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:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Sporingstabel for SQL-forespørgsler" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 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:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Opret versioner automatisk" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7172,11 +7185,11 @@ msgstr "" "Efterlades tom for at undlade lagring af bruger-præferencer i database, " "forslag: [kbd]pma_userconfig[/kbd]." -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Bruger preference storage tabel" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7186,11 +7199,11 @@ msgstr "" "menus funktioner; Efterlade en af dem tom vil deaktivere denne funktion, " "foreslået: [kbd]pma__users[/kbd]." -#: libraries/config/messages.inc.php:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Brugertabel" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7200,11 +7213,11 @@ msgstr "" "funktioner; efterlades en af dem tom vil dette deaktivere denne funktion, " "foreslået: [kbd]pma__usergroups[/kbd]." -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Tabel for brugergrupper" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7212,15 +7225,15 @@ msgstr "" "Efterlades tom for deaktivere muligheden for at skjule eller vise " "navigationselementer, forslag: [kbd]pma__navigationhiding[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Tabel for skjulte navigationselementer" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Bruger for config auth" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7228,19 +7241,19 @@ msgstr "" "En brugervenlig beskrivelse af serveren. Lad stå tom for at vise " "værtstnavnet i stedet." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Udvidet navn for denne server" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Tillad visning af alle rækker" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7251,74 +7264,74 @@ msgstr "" "konfigurationsfilen; dette begrænser ikke muligheden for at udføre den samme " "kommando direkte." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Vis formular til ændring af adgangskode" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Vis formular til databaseoprettelse" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Vis tidsstempel for oprettelse" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Vis tidsstempel med seneste opdatering" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Vis tidsstempel for Seneste tjek" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Vis felttyper" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Vis funktionsfelterne i rediger/indsæt tilstand." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Vis funktionsfelter" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Om hints skal vises eller ej." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Vis hint" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7326,61 +7339,61 @@ msgstr "" "Viser link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Vis phpinfo() link" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Vis detaljeret MySQL serverinformation" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Vis SQL-forespørgsler" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Bevar forespørgeselsboks" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Vis statistik" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Spring over låste tabeller" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "En advarsel vises på hovedsiden, hvis Suhosin registreres." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin advarsel" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7390,11 +7403,11 @@ msgstr "" "indstillingen session.gc_maxlifetime er mindre end værdien af " "`LoginCookieValidity`." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Advarsel om gyldighed for logincookie" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7403,11 +7416,11 @@ msgstr "" "fremhævet i SQL forespørgselstekstbokse (*2) og for forespørgselsvinduet " "(*1,25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Tekstboks kolonner" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7416,31 +7429,31 @@ msgstr "" "fremhævet i SQL forespørgselstekstbokse (*2) og for forespørgselsvinduet " "(*1,25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Tekstboks rækker" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Titel på browservindue, når ingenting er valgt." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Standardtitel" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7452,27 +7465,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste af trusted proxies til IP tillad/afvis" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Mappe til uploads" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Tillad søgning i hele databasen." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Brug databasesøgning" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7480,26 +7493,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Aktivér udviklerfanen i indstillinger" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Tjek for den seneste version" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7511,11 +7524,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:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Proxy-url" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7526,19 +7539,19 @@ msgstr "" "Basic Authentication (grundlæggende godkendelsestjek). På nuværende " "tidspunkt understøttes der ikke andre godkendelsestjek." -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Brugernavn for proxy" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Adgangskoden til godkendelsestjek på proxyen." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Adgangskode for proxy" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7546,45 +7559,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Offentlig nøgle for reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Privat nøgle for reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "Vælg standardhandlingen for afsendelse af fejlrapporter." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Send fejlrapporter" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "Enter udfører forespørgsler i konsollen" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7592,7 +7605,7 @@ msgstr "" "Slå tilstanden Zero Configuration til - denne lader sig tilpasse " "lagringstabeller for phpMyAdmin-konfigurationen automatisk." -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Slå tilstanden Zero Configuration til" @@ -7612,44 +7625,44 @@ msgstr "HTTP autentifikation" msgid "Signon authentication" msgstr "Login autentifikation" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV vha. LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "OpenDocument regneark" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Hurtig" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Brugerdefineret" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Database eksportindstillinger" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV til MS Excel-data" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument tekst" @@ -7857,20 +7870,20 @@ msgstr "Kan ikke tælle rækker i et resultatsæt som ikke er sat i buffer" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Ingen adgangskode" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Adgangskode:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Skriv igen:" @@ -8007,8 +8020,8 @@ msgstr ", @TABLE@ vil blive tabelnavnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede " "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " @@ -8561,8 +8574,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentation og yderligere information om PBXT kan findes på %sPrimeBase XT " "hjemmeside%s." @@ -9031,7 +9044,7 @@ msgstr "Log af" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentation" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Genindlæs navigationspanel" @@ -9721,8 +9734,8 @@ msgstr "Velkommen til %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. " "Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en." @@ -9953,7 +9966,7 @@ msgstr "Indsæt feltnavne i første række:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Vært:" @@ -10957,22 +10970,22 @@ msgstr "" "Hvis ikke, så prøv at indsætte følgende linje i [mysqld] sektionen:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Brugernavn:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Brugernavn" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Adgangskode" @@ -11000,10 +11013,10 @@ msgstr "Server-ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Vært" @@ -11015,38 +11028,38 @@ msgid "" msgstr "Kun slaver startet med --report-host=host_name er synlige i listen." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Enhver vært" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Denne vært" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Enhver bruger" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Brug tekstfelt:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Brug tabellen host" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11055,7 +11068,7 @@ msgstr "" "bruges i stedet." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Skriv igen" @@ -11784,7 +11797,7 @@ msgstr "Ingen" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Brugergruppe" @@ -11853,14 +11866,14 @@ msgstr "Begrænser antallet af samtidige forbindelser brugere må have." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "NB: Navne på MySQL privilegier er på engelsk." @@ -11869,7 +11882,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globale privilegier" @@ -11878,7 +11891,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" @@ -11897,18 +11910,18 @@ msgstr "" "Tillader oprettelse af brugere og privilegier uden at genindlæse privilegie-" "tabellerne." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Login-information" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Brug tekstfelt" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -11916,126 +11929,126 @@ msgstr "" "Der findes allerede en konto med samme brugernavn, men muligvis med et andet " "værtsnavn." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Adgangskoden må ikke ændres" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Adgangskoden for %s blev korrekt udskiftet." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har tilbagekaldt privilegierne for %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Opret bruger" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Database for bruger" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Opret database med samme navn og tildel alle privilegier." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Tildel alle privilegier på database \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Brugere med adgang til \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Bruger er blevet tilføjet." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Bruger" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Tildel" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Ikke tilstrækkelige privilegier til at se brugere." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Ingen bruger fundet." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Enhver" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "database-specifik" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "jokertegn" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "tabelspecifik" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Ret privilegier" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Tilbagekald" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Redigér brugergruppe" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… behold den gamle." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… slet den gamle fra brugertabellerne." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… tilbagekald alle aktive privilegier fra den gamle og slet den " "efterfølgende." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12043,92 +12056,92 @@ msgstr "" "… slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Ret Login-information / Kopier bruger" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Opret en bruger med samme privilegier og …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Tilføj privilegier på følgende database(r):" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Jokertegn % og _ skal escapes med en \\ for brug af dem som almindelige tegn." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Tilføj privileges på følgende tabel:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Fjern valgte brugere" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Drop databaser der har samme navne som brugernes." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Ingen brugere valgt til sletning!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Genindlæs privilegierne" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "De valgte brugere er blevet korrekt slettet." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har opdateret privilegierne for %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Brugeren %s findes i forvejen!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Privilegier for %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Ny" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Ret privilegier:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12136,29 +12149,29 @@ msgstr "" "Bemærk: Du forsøger at redigere privilegier for brugeren som du aktuelt er " "logget ind som." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Oversigt over brugere" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs " "privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra " "privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle " -"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%" -"s før du fortsætter." +"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" +"%s før du fortsætter." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." @@ -13942,19 +13955,19 @@ msgstr "Indeksvalg:" msgid "Key block size:" msgstr "Blokstørrelse på nøgle:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indekstype:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Fortolker:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Kommentar:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Træk for at ændre rækkefølge" @@ -14980,8 +14993,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Det aktuelle forhold mellem ledig og total forespørgselsmellemlager er %s%%. " "Det bør være over 80%%" @@ -15135,8 +15148,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% af alle sorteringer bruger midlertidige tabeller. Denne værdi bør være " "mindre end 10%%." diff --git a/po/de.po b/po/de.po index 76264aa5dd..b8d8beb3d6 100644 --- a/po/de.po +++ b/po/de.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-16 02:12+0200\n" "Last-Translator: Hauke Henningsen \n" "Language-Team: German \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.3-dev\n" @@ -67,7 +67,7 @@ msgstr "Tabellenkommentar:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Spalte" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Verweise" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Primärschlüssel" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Nein" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "heraus warum%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabelle" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Datensätze" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Größe" @@ -373,9 +373,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -572,15 +572,15 @@ msgstr "Geometrie hinzufügen" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -613,11 +613,11 @@ msgstr "Unvollständige Parameter" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %" -"sDokumentation%s zur Lösung diese Problems." +"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " +"%sDokumentation%s zur Lösung diese Problems." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -707,7 +707,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Zurück" @@ -731,7 +731,7 @@ msgid "General Settings" msgstr "Allgemeine Einstellungen" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Passwort ändern" @@ -804,7 +804,7 @@ msgstr "Versionsinformationen:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentation" @@ -909,8 +909,8 @@ msgid "" "extended features have been deactivated. %sFind out why%s. " msgstr "" "Der phpMyAdmin-Konfigurationsspeicher ist nicht vollständig konfiguriert, " -"einige erweiterte Funktionen wurden deaktiviert. %sFinden Sie heraus warum%" -"s. " +"einige erweiterte Funktionen wurden deaktiviert. %sFinden Sie heraus warum" +"%s. " #: index.php:549 msgid "" @@ -1062,7 +1062,7 @@ msgstr "Index hinzufügen" msgid "Edit Index" msgstr "Index bearbeiten" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "%s Spalte(n) zum Index hinzufügen" @@ -1089,7 +1089,7 @@ msgstr "Sie müssen mindestens eine Spalte hinzufügen." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "SQL Vorschau" @@ -1118,12 +1118,12 @@ msgstr "Es wurde kein Host angegeben!" msgid "The user name is empty!" msgstr "Es wurde kein Benutzername eingegeben!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" @@ -1325,7 +1325,7 @@ msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1621,7 +1621,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1836,7 +1836,7 @@ msgstr "SQL-Querybox anzeigen" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2093,7 +2093,7 @@ msgstr "Datenpunkt-Inhalt" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorieren" @@ -2279,7 +2279,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Alles anzeigen" @@ -2383,7 +2383,7 @@ msgstr "Panel ausblenden" msgid "Show hidden navigation tree items." msgstr "Zeige versteckte Navigationselemente." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Mit Hauptpanel verknüpfen" @@ -2891,16 +2891,16 @@ msgid "Delete" msgstr "Löschen" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3015,7 +3015,7 @@ msgid "During current session" msgstr "Während der aktuellen Sitzung" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3399,8 +3399,8 @@ msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie " "die %sDokumentation%s." @@ -3439,6 +3439,7 @@ msgstr "markierte:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3454,12 +3455,12 @@ msgstr "Bearbeiten" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3654,7 +3655,7 @@ msgstr "" "möglicherweise entfernt werden." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3669,11 +3670,11 @@ msgstr "Ansicht" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3689,7 +3690,7 @@ msgstr "Struktur" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3715,9 +3716,9 @@ msgstr "Einfügen" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Rechte" @@ -3777,9 +3778,9 @@ msgid "Central columns" msgstr "Zentrale Spalten" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Datenbanken" @@ -3887,7 +3888,7 @@ msgid "Recent" msgstr "Letzte" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Favoriten-Tabellen" @@ -3958,7 +3959,7 @@ msgstr "Sortierung" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4320,20 +4321,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis -" -"1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38" +"Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis " +"-1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Eine Fließkommazahl mit doppelter Genauigkeit, erlaubte Werte sind -" -"1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und " +"Eine Fließkommazahl mit doppelter Genauigkeit, erlaubte Werte sind " +"-1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und " "2,2250738585072014E-308 bis 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4373,8 +4374,8 @@ msgstr "Ein Datum, unterstützter Bereich ist %1$s bis %2$s" #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -"Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis %2" -"$s" +"Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis " +"%2$s" #: libraries/Types.class.php:348 msgid "" @@ -4630,7 +4631,7 @@ msgstr "Maximal: %s%s" msgid "MySQL said: " msgstr "MySQL meldet: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL erklären" @@ -4642,7 +4643,7 @@ msgstr "SQL-Erklärung umgehen" msgid "Without PHP Code" msgstr "ohne PHP-Code" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP-Code erzeugen" @@ -4754,13 +4755,13 @@ msgstr "Beschreibung" msgid "Use this value" msgstr "Diesen Wert verwenden" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4941,8 +4942,8 @@ msgid "" "currently using the default time zone of the database server." msgstr "" "Es ist nicht möglich, die Zeitzone %1$s für den Server %2$d zu benutzen. " -"Bitte überprüfen Sie die Konfigurationseinstellung für [em]$cfg['Servers'][%3" -"$d]['SessionTimeZone'][/em]. phpMyAdmin verwendet aktuell die Standard-" +"Bitte überprüfen Sie die Konfigurationseinstellung für [em]$cfg['Servers']" +"[%3$d]['SessionTimeZone'][/em]. phpMyAdmin verwendet aktuell die Standard-" "Zeitzone des Datenbankservers." #: libraries/common.inc.php:1020 @@ -5165,7 +5166,7 @@ msgid "Set value: %s" msgstr "Setze Wert: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Voreingestellten Wert wiederherstellen" @@ -5285,8 +5286,8 @@ msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." msgstr "" -"Falls Sie die [kbd]Cookie[/kbd]-Authentifizierung verwenden und der %" -"sLogincookiespeicher%s ungleich 0 ist, muss die %sLogincookie-Gültigkeit%s " +"Falls Sie die [kbd]Cookie[/kbd]-Authentifizierung verwenden und der " +"%sLogincookiespeicher%s ungleich 0 ist, muss die %sLogincookie-Gültigkeit%s " "auf den gleichen oder einen niedrigeren Wert gesetzt sein." #: libraries/config/ServerConfigChecks.class.php:426 @@ -5315,8 +5316,8 @@ msgstr "" "Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen " "Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im " "Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder " -"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %" -"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." +"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den " +"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." #: libraries/config/ServerConfigChecks.class.php:440 #, php-format @@ -5603,23 +5604,35 @@ msgstr "Angezeigter Reiter beim Öffnen einer Tabelle." msgid "Default table tab" msgstr "Standardtab bei Tabellen" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Tabellen- und Feldnamen mit Backticks umschließen" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Tabellen- und Feldnamen mit Backticks umschließen" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Sollen die Tabellenstrukturaktionen verborgen werden." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Tabellenstrukturaktionen verbergen" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Server als Liste statt Dropdownfeld anzeigen." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Server als Liste anzeigen" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5627,11 +5640,11 @@ msgstr "" "Deakivieren von Massen-Operationen der Tabellen-Instandhaltung, wie " "optimieren oder reparieren von ausgewählten Tabellen einer Datenbank." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Deaktivieren von Massen-Operationen zur Tabellen-Instandhaltung" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5639,39 +5652,39 @@ msgstr "" "Die Anzahl der Sekunden, welche ein Script zur Ausführung benötigen darf " "([kbd]0[/kbd] für unbegrenzt)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maximale Ausführungszeit" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s-Befehl hinzufügen" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Senden" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Zeichensatz der Datei" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Kompression" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5681,60 +5694,60 @@ msgstr "Kompression" msgid "Put columns names in the first row" msgstr "Spaltennamen in die erste Zeile setzen" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Spalten eingeschlossen von" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Spalten escaped mit" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Ersetze NULL durch" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "CRLF-Zeichen aus den Zeilen entfernen" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Spalten enden mit" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Zeilen enden mit" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel-Ausgabe" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Schablone für Datenbanknamen" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Schablone für Servernamen" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Schablone für Tabellennamen" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5743,137 +5756,137 @@ msgstr "Schablone für Tabellennamen" msgid "Dump table" msgstr "Tabelle exportieren" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Tabellenbeschriftung einfügen" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Tabellenbeschriftung" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Fortgesetzte Tabellenbeschriftung" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Kennzeichen" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-Typ" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Tabellenverknüpfungen" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Exportmethode" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Auf Server speichern" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Bestehende Datei(en) überschreiben" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Schablone für Dateinamen merken" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Tabellen- und Feldnamen mit Backticks umschließen" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL-Kompatibilitätsmodus" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE Optionen:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Erzeugungs-/Aktualisierungs-/Überprüfungszeiten" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Verzögerten INSERT-Befehl verwenden" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Fremdschlüsselüberprüfung deaktivieren" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exportiere Ansicht als Tabelle" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s hinzufügen" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Benutze hexadecimal für BINARY und BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Fehlerübergehenden INSERT-Befehl verwenden" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Zu verwendende Syntax beim Hinzufügen von Daten" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maximale Länge der erstellten Abfrage" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Exporttyp" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Export in einer Transaktion zusammenfassen" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Zeit des Exports in UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Sichere Verbindung während der Nutzung von phpMyAdmin erzwingen." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "SSL-Verbindung erzwingen" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5882,143 +5895,143 @@ msgstr "" "[kbd]content[/kbd] ist der referenzierte Wert, [kbd]id[/kbd] ist der " "Schlüsselwert." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Sortierreihenfolge im Fremdschlüssel-Auswahlmenü" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" "Es wird ein Auswahl-Feld verwendet, falls weniger Einträge vorhanden sind." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Fremdschlüssel-Limit" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Anzeigemodus" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Anzeigemodus anpassen." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Standard-Einstellungen anpassen." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Entwickler" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Einstellungen für phpMyAdmin Entwickler." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Bearbeitungsmodus" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Bearbeitungsmodus anpassen." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Voreinstellung für Export" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Standard-Exporteinstellungen anpassen." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funktionen" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Allgemein" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Einige oft verwendete Optionen setzen." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Voreinstellung für Import" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Standard-Importeinstellungen anpassen." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Import/Export" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Import/Export-Verzeichnis und Kompressionsoptionen setzen." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Anzeigeoptionen für Datenbank." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigationspanel" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Aussehen des Navigationspanels anpassen." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Anzeigeoptionen für Server." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Anzeigeoptionen für Tabellen." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Hauptpanel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Sonstige Einstellungen" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Einstellungen welche in keine andere Kategorie passten." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Seitentitel" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6026,19 +6039,19 @@ msgstr "" "Text für die Browser-Titelleiste. Weitere Informationen über Schlüsselwörter " "und Variablennamen in der [doc@cfg_TitleTable]Dokumentation[/doc]." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Abfragefenster" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Queryfenster-Einstellungen anpassen" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Sicherheit" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6046,23 +6059,23 @@ msgstr "" "Beachten Sie, dass phMyAdmin nur eine Bedienoberfläche ist und die " "Möglichkeiten von MySQL nicht einschränkt." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Grundeinstellungen" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Authentifizierung" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Authentifizierungseinstellungen." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Serverkonfiguration" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6070,15 +6083,15 @@ msgstr "" "Erweiterte Serverkonfiguration, ändern Sie diese Einstellungen nur, wenn Sie " "wissen was Sie tun." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Geben Sie die Verbindungsparameter für den Server ein." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Konfigurationsspeicher" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6088,11 +6101,11 @@ msgstr "" "Features zu erhalten, siehe [doc@linked-tables]phpMyAdmin-" "Konfigurationsspeicher[/doc] in der Dokumentation." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Änderungen verfolgen" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6100,109 +6113,109 @@ msgstr "" "Verfolgen von Datenbankänderungen. Erfordert eine konfigurierte PMA-" "Datenbank." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Exportoptionen anpassen" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Importeinstellungen anpassen" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Navigationspanel anpassen" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Hauptpanel anpassen" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL-Abfragen" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL-Querybox" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Angezeigte Links in SQL-Querybox ändern." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Einstellungen für SQL-Abfragen." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Start" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Startseite anpassen." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Datenbank-Struktur" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Wählen Sie aus, welche Details in der Datenbankstrukturansicht (Liste der " "Tabellen) angezeigt werden sollen." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Tabellenstruktur" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Einstellungen für die Tabellenstruktur (Spaltenliste)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Tabs" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Wählen Sie wie die Tabs funktionieren sollen." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Beziehungsschema anzeigen" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Papiergröße" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Textfelder" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Texteingabefelder anpassen." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! Text" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Standard-Einstellungen anpassen" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Warnungen" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Unterdrücken einiger phpMyAdmin-Warnhinweise." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6210,15 +6223,15 @@ msgstr "" "[a@http://de.wikipedia.org/wiki/Gzip]GZip[/a]-Kompression für Import- und " "Exportoperationen aktiviren." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Extra Parameter für iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6226,11 +6239,11 @@ msgstr "" "Wenn aktiv, fährt phpMyAdmin bei der Verarbeitung von multi-Statement-Querys " "fort, wenn eine Query fehlschlägt." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Fehler bei Multi-Statements ignorieren" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6240,28 +6253,28 @@ msgstr "" "Zeitlimit bald erreicht ist. Dies ist eine gute Idee zum Importieren von " "großen Files, kann aber Probleme mit Transaktionen verursachen." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Teilweiser Import: Unterbrechung erlauben" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Fremdschlüsselüberprüfung deaktivieren" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Bei INSERT Fehler nicht abbrechen" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Tabelleninhalt ersetzen" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6269,69 +6282,69 @@ msgstr "" "Voreingestelltes Format. Bitte beachten, dass diese Liste vom Ort abhängt " "(Datenbank, Tabelle) und nur SQL immer verfügbar ist." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Format der importierten Datei" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "verwende LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Spaltennamen in der ersten Zeile" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Keine leeren Datensätze importieren" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Währungen importieren ($5.00 zu 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Prozentwerte als Dezimalzahlen importieren (12.00% wird zu 0.12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Anzahl der am Anfang zu überspringenden Abfragen." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Teilimport: Überspringe Anfragen" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT nicht für Nullwerte verwenden" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Anfangswert für Schieberegler" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Anzahl der auf einmal einfügbaren Datensätze." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Anzahl der eingefügten Datensätze" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Maximal dargestellte Zeichenzahl bei Anzeige einer nicht-numerischen Spalte " "in einer SQL-Abfrage." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Zeichen pro Spalte begrenzen" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6341,11 +6354,11 @@ msgstr "" "FALSE, wird logout nur auf dem aktuellen Server vollzogen. FALSE macht es " "leicht, logout auf andern Servern zu vergessen." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "All Cookies beim Logout löschen" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6353,11 +6366,11 @@ msgstr "" "Definiert ob im [kbd]Cookie[/kbd] Authentifizierungsmodus der vorherige " "Login wieder aufgerufen werden soll oder nicht." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Benutzername wiederherstellen" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6369,48 +6382,48 @@ msgstr "" "Sitzung gespeichert wird und beim Schließen des Browserfensters sofort " "gelöscht wird. Dies wird für nicht vertrauenswürdige Umgebungen empfohlen." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Login Cookie Speicherung" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Legt fest, wie lange (in Sekunden) ein Login Cookie gültig ist." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Login Cookie Gültigkeit" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Verdoppele Größe für LONGTEXT Spalten." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Größere Textfelder für LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Maximal dargestellte Zeichenzahl bei Anzeige einer SQL-Abfrage." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Zeichen Maximum beim SQL Befehl anzeigen" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Benutzer dürfen keinen größeren Wert setzen" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Maximale Anzahl der in der Datenbankliste angezeigten Datenbanken." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Datenbanken Maximum" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6418,11 +6431,11 @@ msgstr "" "Anzahl der Elemente, die pro Seite auf der ersten Ebene im Navigationsbaum " "angezeigt werden können." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Maximale Elemente auf erster Ebene" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6430,11 +6443,11 @@ msgstr "" "Anzahl der Elemente, die pro Seite im Navigationsbaum angezeigt werden " "können." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Maximale Elemente in Zweig" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6442,19 +6455,19 @@ msgstr "" "Anzahl der angezeigten Datensätze in einem Abfrage-Ergebnis. Wenn mehr " "Datensätze vorhanden sind, werden \"Previous\" and \"Next\" Links angezeigt." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Maximale Anzahl der angezeigten Datensätze" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Maximale Anzahl der in einer Tabellenliste angezeigten Tabellen." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Tabellen Maximum" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6462,41 +6475,41 @@ msgstr "" "Anzahl der Bytes, welche ein Script zur Ausführung benötigen darf, z.B. [kbd]" "32M[/kbd] ([kbd]0[/kbd] .für unbegrenzt)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Speicher Limit" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "Im Navigationsbereich den Datenbankbaum durch ein Auswahlmenü ersetzen" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Datenbanknavigation als Baum anzeigen" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Verknüpfen Sie mit Hauptbereich durch die Hervorhebung der aktuellen " "Datenbank oder Tabelle." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Logo im Navigationspanel anzeigen." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Logo anzeigen" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL, auf die das Logo im Navigationspanel zeigt." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL für Logo-Link" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6504,27 +6517,27 @@ msgstr "" "Öffne Links im aktuellen Fenster([kbd]main[/kbd]) oder in einem neuen " "Fenster ([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Ziel für Logo-Link" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Serverauswahl oben im Navigationspanel anzeigen." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Server-Auswahl anzeigen" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Ziel für Schnellzugriff-Icon" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Ziel für zweites Schnellzugriff-Icon" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6532,16 +6545,16 @@ msgstr "" "Legt die minimale Anzahl Elemente fest (Tabellen, Ansichten, Routinen und " "Ereignisse), ab denen ein Filter-Feld angezeigt wird." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Minimale Anzahl Elemente, ab denen Filter-Feld angezeigt wird" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" "Minimale Anzahl der Datenbanken, die im Datenbank-Filterfeld angezeigt werden" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6549,101 +6562,101 @@ msgstr "" "Elemente im Navigationsbaum gruppieren (wie vom unten definierten " "Trennzeichen bestimmt)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Elemente im Baum gruppieren" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" "Zeichenkette, die Datenbanken in unterschiedliche Baum-Abschnitte unterteilt." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Trennzeichen für Datenbank-Baum" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" "Zeichenkette, die Tabellen in unterschiedliche Baum-Abschnitte unterteilt." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Trennzeichen für Tabellen-Baum" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maximale Tiefe des Tabellen-Baumes" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Server unter Mauscursor hervorheben." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Hervorhebung ermöglichen" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" "Wird die Möglichkeit der Baumerweiterung im Navigationsbereich angeboten " "oder nicht." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Erweiterung des Navigationsbaumes aktivieren" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Maximale Anzahl der kürzlichen verwendeten Tabellen, auf 0 setzen zum " "deaktivieren." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "Maximale Anzahl der bevorzugten Tabellen, auf 0 setzen zum deaktivieren." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Kürzlich verwendete Tabellen" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Dies sind Bearbeitungs-, Kopier- und Löschlinks." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Wo die Datensatz-Links angezeigt werden sollen" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Natürliche Reihenfolge" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Verwende nur Icons, nur Text oder beides." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Tabellen-Navigationsleiste" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip Ausgabepufferung" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6651,19 +6664,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Voreingestellte Sortierung" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Verwende andauernde Verbindungen zu MySQL Datenbanken." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Persistente Verbindung" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6673,11 +6686,11 @@ msgstr "" "erforderliche Tabelle der phpMyAdmin Konfiguration nicht gefunden werden " "kann." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6685,11 +6698,11 @@ msgstr "" "Standardmeldung unterdrücken, wenn die Version des Servers und der MySQL-" "Bibliothek sich unterscheiden." -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Warnung bei unterschiedlicher Server-/Bibliothek-Version" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6697,27 +6710,27 @@ msgstr "" "Standardhinweis der Struktur-Seite unterdrücken, wenn Spaltennamen in einer " "Tabelle reservierte MySQL-Wörter sind." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Warnung wegen reservierter MySQL-Wörter" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Wie sollen die Menüpunkte dargestellt werden" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Wie verschiedene Aktions-Links angezeigt werden" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Änderungen an BLOB und BINARY Feldern verbieten." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "BINARY-Felder schützen" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6728,106 +6741,106 @@ msgstr "" "Routinen zur Darstellung des Abfrageverlaufs eingesetzt (sie gehen beim " "Schließen des Fensters verloren)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Anfragelog speichern" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Anzahl der Abfragen in der Historie." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Länge des Abfrageverlaufs" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "Wahl der Funktionen zur Zeichensatz-Konvertierung." -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Umwandlungs Engine" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Tabellensortierung zwischenspeichern" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Standardsortierreihenfolge des Primärschlüssels" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Kopfzeilen wiederholen" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Sofort-Bearbeiten: Aktions-Auslöser" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Relationale Anzeige" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Für Anzeigeoptionen" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Sofort-Bearbeiten: Alle bearbeiteten Zellen auf einmal speichern" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Verzeichnis auf dem Server für Exports." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Speicher Verzeichnis" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Leer lassen, wenn unbenutzt." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Host-Autorisierungsreihenfolge" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Leer lassen, um die Voreinstellungen zu verwenden." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Host-Autorisierungsregeln" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Erlaube Logins ohne Passwort" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Erlaube root Login" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Zeitzone der Sitzung" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" @@ -6835,15 +6848,15 @@ msgstr "" "Setzt die effektive Zeitzone; möglicherweise von der Ihres Datenbankservers " "abweichend" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Bereich" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6853,19 +6866,19 @@ msgstr "" "Authentifizierung[/a] (liegt nicht im Webhauptverzeichnis (document root); " "empfohlen: /etc/swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey Konfigurationsdatei" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Zu benutzende Authentifikations-Methode." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Authentifikationstyp" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6873,11 +6886,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Lesezeichen Tabelle" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6885,32 +6898,32 @@ msgstr "" "Leer lassen für keine Spalten Kommentare/mime types, Vorschlag: [kbd]" "pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Spalten Informationen Tabelle" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Komprimiere die Verbindung zum MySQL-Server." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Verbindung komprimieren" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Art der Verbindung" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "pmadb Benutzer Passwort" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6918,11 +6931,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "pmadb Benutzer" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6930,11 +6943,11 @@ msgstr "" "Eine alternative Host für den Konfiguration Speicher; leer lassen, um die " "bereits definierten Host zu verwenden." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "pmadb Host" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6944,15 +6957,15 @@ msgstr "" "verbinden; leer lassen, um den Standardport, oder den bereits definierten " "Port, wenn der Kontrollhost dem Host gleicht." -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Kontroll-Port" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Verberge Datenbanken, die auf regular expressions (PCRE) passen." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6960,15 +6973,15 @@ msgstr "" "Mehr Informationen auf [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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Benutzung von INFORMATION_SCHEMA deaktivieren" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Datenbanken verstecken" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6976,23 +6989,23 @@ msgstr "" "Leer lassen für keine SQL Abfrageverlaufs-Unterstützung, Vorschlag: [kbd]" "pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL Abfragehistorien Tabelle" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Rechnername auf dem der MySQL Server läuft." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Hostname" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Abmelde URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -7000,15 +7013,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:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Maximale Anzahl der zu speichernden Tabelleneinstellungen" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Beispielabfragentabelle" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -7016,11 +7029,11 @@ msgstr "" "Leer lassen um keine Beispielabfragen nutzen zu können, Vorschlag: [kbd]" "pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Tabelle für zentrale Spalten" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -7028,15 +7041,15 @@ msgstr "" "Leer lassen für keine Unterstützung für zentrale Spalten, Vorschlag: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Versuche ohne Passwort zu verbinden." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Ohne Passwort verbinden" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7046,30 +7059,30 @@ msgstr "" "Bedeutung wiederhergestellt, d.h. [kbd]'my\\_db'[/kbd] und nicht " "[kbd]'my_db'[/kbd]." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Nur aufgelistete Datenbanken zeigen" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Leer lassen, wenn config auth nicht verwendet wird." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Passwort für config Authentifikation" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF-Schema: Seiten-Tabelle" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7079,20 +7092,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Datenbankname" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Port" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7100,11 +7113,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Kürzlich verwendete Tabellen" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7112,11 +7125,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Favoriten-Tabelle" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7124,11 +7137,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relation Tabelle" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7136,32 +7149,32 @@ msgstr "" "Siehe [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "Authentifizierungsarten[/a] für ein Beispiel." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Anmelde Session-Name" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Anmelde URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Server Socket" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Ermögliche SSL für Verbindung zum MySQL-Server." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Benutze SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7169,11 +7182,11 @@ msgstr "" "Leer lassen für keine PDF-Schema-Unterstützung, Vorschlag: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Designer- und PDF-Schema: Tabellenkoordinaten" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7181,11 +7194,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Tabelle für Anzeigespalten" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7193,11 +7206,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabelle für Oberflächeneinstellungen" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7205,11 +7218,11 @@ msgstr "" "DROP DATABASE IF EXISTS statement beim Erstellen einer neuen Datenbank als " "erste Zeile loggen." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "DROP DATABASE hinzufügen" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7217,11 +7230,11 @@ msgstr "" "DROP TABLE IF EXISTS statement beim Erstellen einer neuen Ansicht als erste " "Zeile loggen." -#: libraries/config/messages.inc.php:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "DROP TABLE hinzufügen" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7229,21 +7242,21 @@ msgstr "" "DROP VIEW 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 VIEW" msgstr "DROP VIEW hinzufügen" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Zu verfolgende Statements" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7251,11 +7264,11 @@ msgstr "" "Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: [kbd]" "pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabelle mit Verfolgung der SQL-Abfragen" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7263,11 +7276,11 @@ msgstr "" "Automatische Versionserstellung für Tabellen und Ansichten durch den " "Verlaufs-Mechanismus." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Versionen automatisch erzeugen" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7275,11 +7288,11 @@ msgstr "" "Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu " "speichern, Vorschlag: [kbd]pma__userconfig[/kbd]." -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabelle für Benutzereinstellungen" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7289,11 +7302,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Benutzer-Tabelle" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7303,11 +7316,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Benutzergruppen-Tabelle" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7315,15 +7328,15 @@ msgstr "" "Leer lassen, um die Navigation anzuzeigen oder zu verstecken, Vorschlag: " "[kbd]pma__userconfig[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Tabelle für ausgeblendete Navigations-Elemente" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Benutzername für config Authentifikation" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7331,21 +7344,21 @@ msgstr "" "Benutzerfreundlicher Name des Servers. Leer lassen um den tatsächlichen " "Rechnernamen anzuzeigen." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Serverbezeichnung" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Erlaube es alle Datensätze anzuzeigen" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7356,47 +7369,47 @@ msgstr "" "dieses beschränkt nicht die Möglichkeit der direkten Ausführung des selben " "Befehls." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Zeige Formular zur Passwort-Änderung" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Zeige Formular zur Datenbank-Erstellung" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Erstellungs-Zeitstempel anzeigen" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Zeitstempel des letzten Updates anzeigen" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Zeitstempel der letzten Überprüfung einblenden" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7404,27 +7417,27 @@ msgstr "" "Definiert, ob Typen-Felder anfänglich im Bearbeiten/Einfügen-Modus angezeigt " "werden." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Feld-Typen anzeigen" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Im Bearbeiten/Einfügen Modus Funktionsfelder anzeigen." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Funktionsfelder anzeigen" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Hinweise anzeigen." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Hinweis anzeigen" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7432,65 +7445,65 @@ msgstr "" "Zeige Link zu [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "Ausgabe." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Zeige phpinfo() Link" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Zeige detailierte MySQL-Server Informationen" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Zeige SQL Anfragen" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Abfragefeld weiterhin anzeigen" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Zeige Statistik" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Überspringe gesperrte Tabellen" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Warnhinweis auf der Hauptseite, wenn Suhosin erkannt wird." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin Warnhinweis" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7500,11 +7513,11 @@ msgstr "" "der Wert der PHP-Einstellung session.gc_maxlifetime kleiner als der Wert von " "`LoginCookieValidity` ist." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Login-Cookie Gültigkeitswarnung" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7512,11 +7525,11 @@ msgstr "" "Textfeldgröße (in Spalten) im Bearbeitungsmodus. Dieser Wert wird vergrößert " "für Textfelder bei SQL-Abfragen (*2) und Abfragefenster (*1,25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Textfeldspalten" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7524,31 +7537,31 @@ msgstr "" "Textfeldgröße (in Zeilen) im Bearbeitungsmodus. Dieser Wert wird vergrößert " "für Textfelder bei SQL-Abfragen (*2) und Abfragefenster (*1,25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Textfeldzeilen" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Titelleiste des Browserfensters wenn nichts ausgewählt ist." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Standardtitel" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7560,27 +7573,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste der Vertrauenswürdigen Proxies für IP Filter" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Upload Verzeichnis" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Erlaube Suche in der gesammten Datenbank." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Datenbank Suche" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7588,26 +7601,26 @@ msgstr "" "Wenn deaktiviert, können Benutzer – unabhängig von der Checkbox rechts – " "keine der untenstehenden Einstellungen ändern." -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Aktiviere den Reiter \"Entwickler\" in den Einstellungen" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Auf neue Version prüfen" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7620,11 +7633,11 @@ msgstr "" "keinen direkten Zugriff auf das Internet hat. Das Format ist: \"Hostname:Port" "\"." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Proxy-URL" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7635,21 +7648,21 @@ msgstr "" "Authenfizierung verwendet. Momentan werden andere Arten der " "Authentifizierung nicht unterstützt." -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Proxy-Benutzername" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Das Kennwort für die Authentifizierung mit dem Proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 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:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7657,38 +7670,38 @@ msgstr "" "[a@http://de.wikipedia.org/wiki/ZIP-Dateiformat]ZIP[/a]-Kompression für " "Import- und Exportoperationen aktivieren." -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Öffentlicher Schlüssel für reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Privater Schlüssel für reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "Wählen Sie die Standardaktion, beim Senden von Fehlerberichten." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Fehlerberichte senden" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." @@ -7696,11 +7709,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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "Enter führt SQL-Abfragen in der Konsole aus" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7708,7 +7721,7 @@ msgstr "" "Aktivieren Sie den Keine-Konfiguration-Modus um phpMyAdmin die " "Konfigurationsspeichertabellen automatisch zu erzeugen." -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Keine-Konfiguration-Modus aktivieren" @@ -7728,44 +7741,44 @@ msgstr "HTTP-Authentifizierung" msgid "Signon authentication" msgstr "Signon-Authentifizierung" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV mit LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "OpenDocument Kalkulationstabelle" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Schnell" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Benutzerdefiniert" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Export-Optionen der Datenbank" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV-Daten für MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument-Text" @@ -7976,20 +7989,20 @@ msgstr "Kann nicht Zeilen zählen in einer ungepufferten Ergebnismenge" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Kein Passwort" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Passwort:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Wiederholen:" @@ -8128,8 +8141,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter " "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " @@ -8690,8 +8703,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." @@ -9164,7 +9177,7 @@ msgstr "Neu anmelden" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-Dokumentation" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Navigations-Panel aktualisieren" @@ -9867,8 +9880,8 @@ msgstr "Willkommen bei %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Sie haben möglicherweise noch keine Konfigurationsdatei erstellt. Sei können " "das %1$sSetup-Skript%2$s verwenden, um eine zu erstellen." @@ -10100,7 +10113,7 @@ msgstr "Spaltennamen in die erste Zeile setzen:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Host:" @@ -11134,22 +11147,22 @@ msgstr "" "[mysqld] einfügen:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Benutzername:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Benutzername" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Passwort" @@ -11177,10 +11190,10 @@ msgstr "Server-ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -11194,38 +11207,38 @@ msgstr "" "sind in dieser Liste sichtbar." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Jeder Host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Dieser Host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Jeder Benutzer" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Textfeld verwenden:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Verwende Hosttabelle" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11234,7 +11247,7 @@ msgstr "" "die Werte aus der Host-Tabelle verwendet." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Wiederholen" @@ -11980,7 +11993,7 @@ msgstr "Kein(e)" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Benutzergruppe" @@ -12057,14 +12070,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Hinweis: MySQL-Rechte werden auf Englisch angegeben." @@ -12073,7 +12086,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globale Rechte" @@ -12082,7 +12095,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" @@ -12101,18 +12114,18 @@ msgstr "" "Erlaubt das Hinzufügen von Benutzern und Rechten ohne den die " "Benutzerprofile neu laden zu müssen." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Anmeldeinformation" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Textfeld verwenden" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12120,219 +12133,219 @@ msgstr "" "Es besteht schon ein Konto mit dem gleichen Benutzernamen, aber eventuell " "anderem Hostnamen." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Passwort nicht verändert" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Das Passwort für %s wurde geändert." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Sie haben die Rechte für %s widerrufen." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Benutzer hinzufügen" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Datenbank für Benutzer" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benutzernamen beginnen " "(username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Gewähre alle Rechte auf die Datenbank \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Benutzer mit Zugriff auf \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Benutzer wurde hinzugefügt." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Benutzer" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Nicht genügend Berechtigungen um Benutzer anzuzeigen." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Es wurde kein Benutzer gefunden." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Jeder" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "datenbankspezifisch" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "Platzhalter" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "tabellenspezifisch" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Rechte ändern" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Entfernen" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Benutzergruppe bearbeiten" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… behalte den alten bei." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… lösche den alten von den Benutzertabellen." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… entziehe dem alten alle Rechte und lösche ihn anschließend." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… lösche den alten und lade anschließend die Benutzertabellen neu." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Anmeldeinformation ändern/Benutzer kopieren" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Spaltenspezifische Rechte" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Rechte zu folgender Datenbank(en) hinzufügen:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Platzhalter _ und % sollten mit einem \\ escaped werden, um das gewünschte " "Sonderzeichen einzubinden." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Rechte zu folgender Tabelle hinzufügen:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Die ausgewählten Benutzer löschen" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Den Benutzern alle Rechte entziehen und sie anschließend aus den " "Benutzertabellen löschen." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Die gleichnamigen Datenbanken löschen." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Lade die Benutzertabellen neu" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Die gewählten Benutzer wurden gelöscht." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Die Rechte für %s wurden geändert." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Lösche %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Der Benutzer %s existiert bereits!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Rechte für %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Neu" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Rechte ändern:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12340,17 +12353,17 @@ msgstr "" "Hinweis: Sie versuchen, die Berechtigungen des Benutzers zu bearbeiten, mit " "dem Sie aktuell angemeldet sind." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Benutzerübersicht" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Hinweis: phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden " "MySQL-Tabellen aus. Der Inhalt dieser Tabellen kann sich von den " @@ -12358,11 +12371,11 @@ msgstr "" "Änderungen vorgenommen wurden. In diesem Fall sollten Sie %sdie " "Benutzerprofile neu laden%s bevor Sie fortfahren." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." @@ -14187,19 +14200,19 @@ msgstr "Index Auswahl:" msgid "Key block size:" msgstr "Schlüsselblockgröße:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indextyp:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Parser:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Kommentar:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Zur Umsortierung ziehen" @@ -15235,8 +15248,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Das aktuelle Verhältnis von freiem Abfrage-Zwischenspeicher zur Größe des " "gesamten Abfrage-Zwischenspeichers ist %s%%. Es sollte über 80%% betragen" @@ -15393,8 +15406,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% aller Sortierungen verursachen temporäre Tabellen, dieser Wert sollte " "kleiner als 10%% sein." @@ -17504,8 +17517,8 @@ msgstr "concurrent_insert ist auf 0 gesetzt" #~ "directory %s." #~ msgstr "" #~ "Die Unterstützung für Oberflächendesigns ist deaktiviert. Bitte " -#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis %" -#~ "s." +#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis " +#~ "%s." #~ msgid "Switch to" #~ msgstr "Wechseln zu" diff --git a/po/el.po b/po/el.po index f3770f02b9..ba964e8808 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-03-18 14:15-0400\n" -"PO-Revision-Date: 2015-03-19 18:18+0200\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" +"PO-Revision-Date: 2015-03-22 19:14+0200\n" "Last-Translator: Παναγιώτης Παπάζογλου \n" "Language-Team: Greek " "\n" @@ -67,7 +67,7 @@ msgstr "Σχόλια πίνακα:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Στήλη" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Σύνδεση με" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Πρωτεύον" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Όχι" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "απενεργοποιηθεί. %sΜάθετε γιατί%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Πίνακας" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Εγγραφές" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Μέγεθος" @@ -373,9 +373,9 @@ msgstr "Κατάσταση" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -572,15 +572,15 @@ msgstr "Προσθήκη γεωμετρίας" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -595,8 +595,8 @@ msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -"Επιλέξτε το «GeomFromText» από τη στήλη «Function» και επικολλήστε το παρακάτω " -"κείμενο στο πεδίο «Value»." +"Επιλέξτε το «GeomFromText» από τη στήλη «Function» και επικολλήστε το " +"παρακάτω κείμενο στο πεδίο «Value»." #: import.php:54 msgid "Succeeded" @@ -613,11 +613,11 @@ msgstr "Ελλιπείς παράμετροι" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Πιθανόν προσπαθήσατε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %" -"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." +"Πιθανόν προσπαθήσατε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " +"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -705,7 +705,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Επιστροφή" @@ -729,7 +729,7 @@ msgid "General Settings" msgstr "Γενικές Ρυθμίσεις" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" @@ -802,7 +802,7 @@ msgstr "Πληροφορίες έκδοσης:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Τεκμηρίωση" @@ -1056,7 +1056,7 @@ msgstr "Προσθήκη Ευρετηρίου" msgid "Edit Index" msgstr "Επεξεργασία ευρετηρίου" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Προσθήκη %s στήλης(ών) στο ευρετήριο" @@ -1083,7 +1083,7 @@ msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα π #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Προεπισκόπηση SQL" @@ -1112,12 +1112,12 @@ msgstr "Το όνομα του συστήματος είναι κενό!" msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Ο κωδικός πρόσβασης είναι κενός!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" @@ -1318,7 +1318,7 @@ msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στι #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1617,7 +1617,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1829,7 +1829,7 @@ msgstr "Προβολή παραθύρου ερωτήματος" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2083,7 +2083,7 @@ msgstr "Περιεχόμενο δείκτη δεδομένων" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Παράληψη" @@ -2262,7 +2262,7 @@ msgstr "Πατήστε το προς τα κάτω βέλος
για ενα #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Εμφάνιση όλων" @@ -2364,7 +2364,7 @@ msgstr "Απόκρυψη Πίνακα" msgid "Show hidden navigation tree items." msgstr "Προβολή κρυφών αντικειμένων δέντρου πλοήγησης." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Σύνδεσμος με τον βασικό πίνακα" @@ -2808,8 +2808,8 @@ msgstr "Μη έγκυρη χαρακτήρες στη γραμμή %s." #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -"Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε «%2" -"$s»." +"Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε " +"«%2$s»." #: libraries/Advisor.class.php:475 msgid "per second" @@ -2868,16 +2868,16 @@ msgid "Delete" msgstr "Διαγραφή" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2992,7 +2992,7 @@ msgid "During current session" msgstr "Κατά την τρέχουσα συνεδρία" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3370,11 +3370,11 @@ msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %" -"sτεκμηρίωση%s." +"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " +"%sτεκμηρίωση%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3408,6 +3408,7 @@ msgstr "Με τους επιλεγμένους:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3423,12 +3424,12 @@ msgstr "Αλλαγή" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3623,7 +3624,7 @@ msgstr "" "απομακρυνθεί." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Διακομιστής" @@ -3638,11 +3639,11 @@ msgstr "Προβολή" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3658,7 +3659,7 @@ msgstr "Δομή" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3684,9 +3685,9 @@ msgstr "Προσθήκη" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Δικαιώματα" @@ -3746,9 +3747,9 @@ msgid "Central columns" msgstr "Κεντρικές στήλες" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Βάσεις δεδομένων" @@ -3856,7 +3857,7 @@ msgid "Recent" msgstr "Πρόσφατα" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Αγαπημένοι πίνακες" @@ -3928,7 +3929,7 @@ msgstr "Ταξινόμηση" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4293,21 +4294,21 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Ένας μικρός αριθμός κινητής υποδιαστολής, επιτρεπτές τιμές είναι -" -"3.402823466E+38 έως -1.175494351E-38, 0, και 1.175494351E-38 έως 3.402823466E" -"+38" +"Ένας μικρός αριθμός κινητής υποδιαστολής, επιτρεπτές τιμές είναι " +"-3.402823466E+38 έως -1.175494351E-38, 0, και 1.175494351E-38 έως " +"3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Ένας αριθμός κινητής υποδιαστολής διπλής ακρίβειας, επιτρεπτές τιμές είναι -" -"1.7976931348623157E+308 έως -2.2250738585072014E-308, 0, και " +"Ένας αριθμός κινητής υποδιαστολής διπλής ακρίβειας, επιτρεπτές τιμές είναι " +"-1.7976931348623157E+308 έως -2.2250738585072014E-308, 0, και " "2.2250738585072014E-308 έως 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4600,7 +4601,7 @@ msgstr "Μέγιστο μέγεθος: %s%s" msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μήνυμα: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Ανάλυση SQL" @@ -4612,7 +4613,7 @@ msgstr "Χωρίς ανάλυση SQL" msgid "Without PHP Code" msgstr "χωρίς κώδικα PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" @@ -4725,13 +4726,13 @@ msgstr "Περιγραφή" msgid "Use this value" msgstr "Χρήση αυτής της τιμής" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5136,7 +5137,7 @@ msgid "Set value: %s" msgstr "Ορισμός τιμής: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Επαναφορά προεπιλεγμένης τιμής" @@ -5180,10 +5181,10 @@ msgid "" msgstr "" "Αυτή η %sεπιλογή%s πρέπει να απενεργοποιηθεί καθώς επιτρέπει σε εισβολείς να " "συνδεθούν σε οποιοδήποτε διακομιστή MySQL. Αν νομίζετε ότι αυτό είναι " -"απαραίτητο, χρησιμοποιήστε την %sπεριορισμένη σύνδεση στον διακομιστή MySQL%" -"s ή %sλίστα αξιόπιστων διακομιστών%s. Ωστόσο, η προστασία με βάση την IP από " -"λίστα προστατευμένων διακομιστών ίσως να μην είναι αξιόπιστη γιατί μπορεί η " -"IP σας να ανήκει σε πάροχο με χιλιάδες χρήστες." +"απαραίτητο, χρησιμοποιήστε την %sπεριορισμένη σύνδεση στον διακομιστή MySQL" +"%s ή %sλίστα αξιόπιστων διακομιστών%s. Ωστόσο, η προστασία με βάση την IP " +"από λίστα προστατευμένων διακομιστών ίσως να μην είναι αξιόπιστη γιατί " +"μπορεί η IP σας να ανήκει σε πάροχο με χιλιάδες χρήστες." #: libraries/config/ServerConfigChecks.class.php:381 msgid "" @@ -5235,8 +5236,8 @@ msgid "" "%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause " "random session invalidation (currently session.gc_maxlifetime is %d)." msgstr "" -"Αν η %sLogin cookie validity%s είναι μεγαλύτερη από %ssession.gc_maxlifetime%" -"s μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας (το τρέχον session." +"Αν η %sLogin cookie validity%s είναι μεγαλύτερη από %ssession.gc_maxlifetime" +"%s μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας (το τρέχον session." "gc_maxlifetime είναι %d)." #: libraries/config/ServerConfigChecks.class.php:413 @@ -5536,8 +5537,8 @@ msgid "" "Whether a warning (\"Are your really sure…\") should be displayed when " "you're about to lose data." msgstr "" -"Όταν μια προειδοποίηση («Είστε σίγουρος/η…») πρέπει να προβάλετε αν πρόκειται " -"να χαθούν δεδομένα." +"Όταν μια προειδοποίηση («Είστε σίγουρος/η…») πρέπει να προβάλετε αν " +"πρόκειται να χαθούν δεδομένα." #: libraries/config/messages.inc.php:85 msgid "Confirm DROP queries" @@ -5571,23 +5572,33 @@ msgstr "Προβαλόμενη καρτέλα κατά το άνοιγμα εν msgid "Default table tab" msgstr "Προεπιλεγμένη καρτέλα πίνακα" +#: libraries/config/messages.inc.php:94 +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Αυτόματη συμπλήρωση του ονόματος πίνακα και στηλών στα ερωτήματα SQL." + #: libraries/config/messages.inc.php:95 +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Ενεργοποίηση αυτόματης συμπλήρωσης για ονόματα πίνακα και στηλών" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Αν θα πρέπει να αποκρυφτούν οι ενέργειες δομής πίνακα." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Απόκρυψη ενεργειών δομής πίνακα" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Εμφάνιση λίστας διακομιστών ως λίστα και όχι ως αναδυόμενο μενού." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Προβολή διακομιστών ως λίστα" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5595,11 +5606,11 @@ msgstr "" "Απενεργοποιεί τις λειτουργίες μαζικής συντήρησης πινάκων, όλως " "βελτιστοποίηση ή επισκευή των επιλεγμένων πινάκων μιας βάσης δεδομένων." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Απενεργοποίηση συντήρησης πολλαπλών πινάκων" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5607,39 +5618,38 @@ msgstr "" "Ορίστε τον αριθμό των δευτερολέπτων που επιτρέπεται να εκτελεστεί κώδικας " "([kbd]0[/kbd] για εκτέλεση χωρίς όριο)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Μέγιστος χρόνος εκτέλεσης" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format -#| msgid "Add %s statement" msgid "Use %s statement" msgstr "Χρήση δήλωσης %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Αποστολή" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Σύνολο χαρακτήρων αρχείου" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Μορφοποίηση" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Συμπίεση" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5649,60 +5659,60 @@ msgstr "Συμπίεση" msgid "Put columns names in the first row" msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γραμμή" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Στήλες που περικλείονται με" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα διαφυγής" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Αντικατάσταση τιμής NULL με" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Απομάκρυνση χαρακτήρων CRLF μέσα στις στήλες" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Στήλες που τελειώνουν με" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Γραμμές που τελειώνουν με" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Έκδοση Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Πρότυπο ονόματος βάσης δεδομένων" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Πρότυπο ονόματος διακομιστή" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Πρότυπο ονόματος πίνακα" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5711,137 +5721,137 @@ msgstr "Πρότυπο ονόματος πίνακα" msgid "Dump table" msgstr "Απόρριψη πίνακα" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Συμπερίληψη λεζάντας πίνακα" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Λεζάντα πίνακα" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Συνεχής λεζάντα πίνακα" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Κλειδί ετικέτας" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Τύπος MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Συσχετίσεις" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Μέθοδος εξαγωγής" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Αποθήκευση στο διακομιστή" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Αντικατάσταση αρχείου(ων)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Πρότυπο απομνημόνευσης ονοματος αρχείου" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Χρήση ανάποδων εισαγωγικών στα ονόματα των πινάκων και των στηλών" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Κατάσταση συμβατότητας SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Επιλογές CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Δημιουργία/Ενημέρωση/Έλεγχος ημερομηνιών" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Χρήση εισαγωγών με καθυστέρηση" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Απενεργοποίηση ελέγχων μη διακριτών κλειδιών" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Εξαγωγή προβολών ως πίνακες" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Χρήση δεκαεξαδικού για BINARY και BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Χρήση παραβλεφθέντων εισαγωγών" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Σύνταξη για χρήση στην εισαγωγή δεδομένων" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Μέγιστο μήκος δημιουργηθέντος ερωτήματος" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Εξαγωγή τύπου" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Συμπερίληψη εξαγωγής στη συναλλαγή" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Εξαγωγή χρόνου σε UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Εξαναγκασμένη ασφαλής σύνδεση όσο χρησιμοποιείται το phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Εξαναγκασμένη σύνδεση SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5849,142 +5859,142 @@ msgstr "" "Ταξινόμηση για αντικείμενα σε αναδυόμενο μενού foreing key; [kbd]content[/" "kbd] είναι τα αναφερθέντα δεδομένα, [kbd]id[/kbd] είναι η τιμή κλειδιού." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Αναδυόμενη σειρά μη διακριτού κλειδιού" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Μια αναδυόμενη λίστα θα χρησιμοποιηθεί, αν υπάρχουν λίγα αντικείμενα." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Όριο μη διακριτού κλειδιού" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Κατάσταση αναζήτησης" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Προσαρμοσμένη κατάσταση αναζήτησης." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Προσαρμογή προεπιλεγμένων επιλογών." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Δημιουργός" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Ρυθμίσεις για δημιουργούς του phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Κατάσταση επεξεργασίας" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Προσαρμοσμένη κατάσταση επεξεργασίας." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Προεπιλογές εξαγωγής" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Προσαρμογή προεπιλεγμένων επιλογών εξαγωγής." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Χαρακτηριστικά" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Γενικά" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Ορίστε ορισμένες κοινώς χρησιμοποιούμενες επιλογές." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Προεπιλογές εισαγωγής" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Προσαρμογή προεπιλεγμένων επιλογών εισαγωγής." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Εισαγωγή / εξαγωγή" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Ορισμός φακέλων εισαγωγής-εξαγωγής και επιλογές συμπίεσης." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "Έγγραφο LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Επιλογές προβολής βάσεων δεδομένων." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Πίνακας πλοήγησης" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Προσαρμογή εμφάνισης του πίνακα πλοήγησης." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Διακομιστές" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Επιλογές προβολής διακομιστών." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Επιλογές προβολής πινάκων." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Βασικός πίνακας" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Excel" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Άλλες ρυθμίσεις πυρήνα" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Ρυθμίσεις που δεν ανήκουν κάπου αλλού." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Τίτλοι σελίδας" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5993,19 +6003,19 @@ msgstr "" "[doc@cfg_TitleTable]τεκμηρίωση[/doc] για μαγικά κείμενα που μπορούν να " "χρησιμοποιηθούν για ειδικές τιμές." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Παράθυρο ερωτήματος" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Προσαρμόστε επιλογές παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Ασφάλεια" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6013,23 +6023,23 @@ msgstr "" "Σημειώστε ότι το phpMyAdmin είναι απλά ένα περιβάλλον εργασίας και τα " "χαρακτηριστικά του δεν περιορίζουν τη MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Βασικές ρυθμίσεις" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Πιστοποιίηση" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Ρυθμίσεις πιστοποίησης." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Προσαρμογή διακομιστή" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6037,15 +6047,15 @@ msgstr "" "Προχωρημένη ρύθμιση διακομιστή, μην αλλάξετε αυτές τις ρυθμίσεις εκτός και " "αν ξέρετε που παραπέμπουν." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Εισάγετε παραμέτρους σύνδεσης διακομιστή." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Χώρος αποθήκευση ρυθμίσεων" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6055,11 +6065,11 @@ msgstr "" "χαρακτηριστικά. Δείτε την [doc@linked-tables]υποδομή συνδεδεμένων πινάκων[/" "doc] στην τεκμηρίωση." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Παρακολούθηση αλλαγών" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6067,110 +6077,110 @@ msgstr "" "Η παρακολούθηση των αλλαγών έγινε στη βάση δεδομένων. Απαιτεί το χώρο " "αποθήκευσης ρυθμίσεων του phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Προσαρμογή επιλογών εξαγωγής" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Προσαρμογή επιλογών εισαγωγής" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Προσαρμογή πίνακα πλοήγησης" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Προσαρμογή βασικού πίνακα" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Ερωτήματα SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Χώρος Ερωτήματος SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Προσαρμογή εμφανιζόμενων συνδέσμων στους χώρους ερωτημάτων SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Ρυθμίσεις ερωτημάτων SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Εκκίνηση" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Προσαρμογή σελίδας εκκίνησης." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Δομή βάσης δεδομένων" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Επιλέξτε ποιες λεπτομέρειες θα προβάλονται στη δομή της βάσης δεδομένων " "(λίστα πινάκων)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Δομή πίνακα" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Ρυθμίσεις για τη δομή του πίνακα (λίστα στηλών)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Καρτέλες" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Επιλέξτε πως θα λειτουργούν οι καρτέλες." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Προβολή σχεσιακού σχήματος" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Μέγεθος χαρτιού" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Πεδία κειμένου" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Προσαρμογή πεδίων εισαγωγής κειμένου." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Κείμενο Texy" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Προσαρμογή προεπιλεγμένων επιλογών" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Προειδοποιήσεις" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" "Απενεργοποίηση ορισμένων προειδοποιήσεων που εμφανίζονται στο phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6178,15 +6188,15 @@ msgstr "" "Ενεργοποιήστε τη συμπίεση [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] για " "τις λειτουργίες εισαγωγής και εξαγωγής." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Επιπλέον παράμετροι για την iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6194,11 +6204,11 @@ msgstr "" "Αν ενεργοποιηθεί, το phpMyAdmin συνεχίζει να υπολογίζει ερωτήματα πολλαπλών " "δηλώσεων ακόμα και αν ένα από τα ερωτήματα αποτύχει." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Παράβλεψη σφαλμάτων πολλαπλών δηλώσεων" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6209,28 +6219,27 @@ msgstr "" "την εισαγωγή μεγάλων αρχείων, αν και μπορεί να μπορεί να διακόψει τις " "διαδικασίες." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Μερική εισαγωγή: να επιτρέπεται η διακοπή" -#: libraries/config/messages.inc.php:336 -#| msgid "Disable foreign key checks" +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" "Προσωρινή απενεργοποίηση ελέγχων μη διακριτών κλειδιών κατά την εισαγωγή" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Να μην γίνετια ακύρωση σε σφάλμα INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Αντικατάσταση δεδομένων πίνακα με το αρχείο" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6238,69 +6247,69 @@ msgstr "" "Προεπιλεγμένη μορφή; να ληφθεί υπόψη ότι αυτή η λίστα εξαρτάται από την " "τοποθεσία (βάση δεδομένων, πίνακας) και ότι μόνο η SQL είναι πάντα διαθέσιμη." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Μορφή εισαχθέντος αρχείου" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Χρήση λέξης-κλειδί LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Ονόματα στήλης στην πρώτη γραμμή" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Να μην γίνει εισαγωγή άδειων γραμμών" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Προσθήκη νομισμάτων (€5,00 αντί 5,00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (12.00% αντί .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Αριθμός ερωτημάτων που θα παραβλεφθούν από την αρχή." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Μερική εισαγωγή: παράβλεψη ερωτημάτων" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Να μην γίνεται AUTO_INCREMENT για μηδενικές τιμές" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Αρχική κατάσταση κυλυομένων" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Πόσες γραμμές μπορούν να εισαχθούν μονομιάς." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Αριθμός εισαχθέντων γραμμών" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Μέγιστος αριθμός χαρακτήρων που φαίνεται σε μη αριθμητική στήλη στην προβολή " "φυλλομετρητή." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Όριο χαρακτήρων στήλης" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6311,11 +6320,11 @@ msgstr "" "διακομιστή. Ορίζοντάς το σε FALSE είναι εύκολο να ξεχάσετε να αποσυνδεθείτε " "από άλλους διακομιστές όταν συνδέεστε σε πολλούς." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Διαγραφή όλων των cookies με την αποσύνδεση" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6323,11 +6332,11 @@ msgstr "" "Ορίζει αν η προηγούμενη σύνδεση πρέπει να επανακληθεί ή όχι σε κατάσταση " "επικύρωσης [kbd]cookie[/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Επανάκληση ονόματος χρήστη" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6339,50 +6348,50 @@ msgstr "" "για την τρέχουσα συνεδρία και θα διαγραφεί μόλις κλείσετε τον φυλλομετρητή. " "Αυτό προτείνεται για μη αξιόπιστα περιβάλλοντα." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Αποθήκευση cookie σύνδεσης" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Ορίστε χρονικά (σε δευτερόλεπτα) την ισχύ ενός cookie σύνδεσης." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Εγκυρότητα cookie σύνδεσης" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Διπλό μέγεθος του textarea για στήλες LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Μεγαλύτερο textarea για LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Μέγιστος αριθμός χαρακτήρων όταν προβάλεται ένα ερώτημα SQL." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Μέγιστο μήκος προβολής SQL" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Οι χρήστες δεν μπορούν να ορίσουν μεγαλύτερη τιμή" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" "Μέγιστος αριθμός βάσεων δεδομένων που θα προβάλονται στη λίστα βάσεων " "δεδομένων." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Μέγιστος αριθμός βάσεων δεδομένων" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6390,11 +6399,11 @@ msgstr "" "Ο αριθμός των αντικειμένων που μπορούν να προβληθούν σε κάθε σελίδα στο " "πρώτο επίπεδο του δέντρου πλοήγησης." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Μέγιστος αριθμός αντικειμένων στο πρώτο επίπεδο" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6402,11 +6411,11 @@ msgstr "" "Ο αριθμός των αντικειμένων που μπορούν να προβληθούν σε κάθε σελίδα στο " "δέντρο πλοήγησης." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Μέγιστος αριθμός αντικειμένων στον κλάδο" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6415,19 +6424,19 @@ msgstr "" "αποτέλεσμα. Αν το αποτέλεσμα περιέχει περισσότερες γραμμές, θα εμφανίζονται " "σύνδεσμοι «Προηγούμενο» και «Επόμενο»." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Μέγιστος αριθμός γραμμών για προβολή" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Μέγιστος αριθμός πινάκες που θα προβάλονται σε λίστα πινάκων." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Μέγιστος αριθμός πινάκων" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6435,44 +6444,44 @@ msgstr "" "Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. [kbd]32M" "[/kbd] ([kbd]0[/kbd] για απεριόριστη)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Όριο μνήμης" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" "Στον πίνακα πλοήγησης, αντικαθιστά το δέντρο της βάσης δεδομένων με έναν " "επιλογέα" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Προβολή πλοήγησης βάσεων δεδομένων ως δέντρο" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Σύνδεση με τον βασικό πίνακα επισημαίνοντας την τρέχουσα βάση δεδομένων ή " "πίνακα." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Προβολή λογοτύπου στον πίνακα πλοήγησης." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Προβολή λογοτύπου" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" "Ο Σϋνδεσμος URL όπου θα τοποθετηθεί στο λογότυπο στον πίνακα πλοήγησης." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Διεύθυνση URL συνδέσμου λογοτύπου" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6480,27 +6489,27 @@ msgstr "" "Ανοίγει τη συνδεδεμένη σελίδα στο κύριο παράθυρο ([kbd]main[/kbd]) ή σε νέο " "([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Προορισμός συνδέσμου λογοτύπου" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Προβολή επιλογής διακομιστή επάνω στον πίνακα πλοήγησης." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Προβολή επιλογής διακομιστών" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Προορισμός για εικονίδιο γρήγορης πρόσβασης" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Προορισμός για δεύτερο εικονίδιο γρήγορης πρόσβασης" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6508,15 +6517,15 @@ msgstr "" "Ορίζει τον ελάχιστο αριθμό αντικειμένων (πίνακες, προβολές, ρουτίνες και " "συμβάντα) για προβολή σε πλαίσιο φίλτρου." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Ελάχιστος αριθμός αντικειμένων για προβολή του πλαισίου φίλτρου" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Ελάχιστος αριθμός πινάκων για προβολή στο πλαίσιο φίλτρου πίνακα" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6524,100 +6533,100 @@ msgstr "" "Ομαδοποιήση αντικειμένων στο δέντρο πλοήγησης (προσδορίζεται από το " "διαχωριστικό που ορίζεται παρακάτω)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Ομαδοποίηση αντικειμένων στο δέντρο" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Κείμενο που διαχωρίζει τις βάσεις δεδομένων σε διαφορετικά επίπεδα." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Διαχωριστικό δέντρου βάσης δεδομένων" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Κείμενο που διαχωρίζει τους πίνακες σε διαφορετικά επίπεδα." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Διαχωριστικό δέντρου πινάκων" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Μέγιστο βάθος δέντρου πίνακα" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Επισήμανση διακομιστή με τον δείκτη του ποντικιού." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Ενεργοποίηση επισήμανσης" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" "Αν θα προσφέρεται η πιθανότητα επέκτασης του δέντρου στον πίνακα πλοήγησης." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Ενεργοποίηση επέκτασης δέντρου πλοήγησης" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Μέγιστος αριθμός πρόσφατα χρησιμοποιημένων πινάκων. ορίστε το σε 0 για " "απενεργοποιήση." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "Μέγιστος αριθμός αγαπημένων πινάκων. ορίστε το σε 0 για απενεργοποιήση." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Πρόσφατα χρησιμποιημένοι πίνακες" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Αυτοί είναι οι σύνδεσμοι Επεξεργασία, Αντιγραφή και Διαγραφή." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Που να προβάλονται οι σύνδεσμοι γραμμής πίνακα" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" "Χρήση φυσικής ταξινόμησης για την ταξινόμηση ονομάτων πινάκων και βάσεων " "δεδομένων." -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Φυσική ταξινόμηση" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Χρήση μόνο εικονιδίων, μόνο κειμένου ή και τα δύο." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Γραμμή πλοήγησης πίνακα" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" "Χρήση εξαγόμενου GZip buffering για αυξημένη ταχύτητα σε μεταφορές HTTP." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Εξαγόμενο GZip buffering" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6625,19 +6634,19 @@ msgstr "" "[kbd]SMART[/kbd] - π.χ. φθίνουσα ταξινόμηση για στήλες τύπου TIME, DATE, " "DATETIME και TIMESTAMP, αύξουσα ταξινόμηση στα υπόλοιπα." -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Προεπιλεγμένη ταξινόμηση" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Χρήση εξαναγκασμένων συνδέσεων στις βάσεις δεδομένων MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Επιμένουσες συνδέσεις" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6647,11 +6656,11 @@ msgstr "" "λεπτομερούς δομής της βάσης δεδομένων, αν κάποιο από τους απαραίτητους " "πίνακες για την αποθήκευση ρυθμίσεων του phpMyAdmin δεν βρεθεί." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Λείπουν πίνακες αποθήκευσης ρυθμίσεων του phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6659,11 +6668,11 @@ msgstr "" "Απενεργοποιήση της προεπιλεγμένης προειδοποιησης που εμφανίζεται αν " "ανιχνευτεί διαφορά μεταξύ της βιβλιοθήκης και του διακομιστή MySQL." -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Προειδοποίηση διαφοράς διακομιστή/βιβλιοθήκης" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6671,27 +6680,27 @@ msgstr "" "Απενεργοποiήστε την προεπιλεγμένη προειδοποίηση που εμφανίζεται στη σελίδα " "Δομής, αν τα ονόματα στηλών είναι δεσμευμένες λέξεις της MySQL." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Προειδοποίηση δεσμευμένης λέξης MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Πως θα εμφανίζονται οι καρτέλες μενού" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Πως θα εμφανίζονται διάφοροι σύνδεσμοι ενεργιών" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Αποτροπή επεξεργασίας στηλών BLOB και BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Προστασία δυαδικών στηλών" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6701,126 +6710,126 @@ msgstr "" "ρυθμίσεων phpMyAdmin). Αν απενεργοποιηθεί, λειτουργούν ρουτίνες JS για " "προβολή του ιστορικού ερωτημάτων (χάνεται με το κλείσιμο του παραθύρου)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Μόνιμο ιστορικό ερωτημάτων" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Πόσα ερωτήματα παραμένουν στο ιστορικό." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Μέγεθος ιστορικού ερωτημάτων" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" "Επιλέξτε ποιες συναρτήσεις θα χρησιμοποιηθούν για μετατροπή συνόλων " "χαρακτήρων." -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Μηχανή επανακωδικοποίησης" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" "Όταν μεταικινήστε μταξύ πινάκων, η ταξινόμηση για κάθε πίανακα " "απομνημονεύεται." -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Απομνημόνευση ταξινόμησης πινάκων" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "Προεπιλεγμένη ταξινόμηση για πίνακες με πρωτεύον κλειδί." -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Προεπιλεγμένη ταξινόμηση πρωτεύοντος κλειδιού" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" "Επανάληψη κεφαλίδων κάθε Χ κελιά. Το [kbd]0[/kbd] απενεργοποιεί το " "χαρακτηριστικό." -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Επανάληψη κεφαλίδων" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Επεξεργασία καννάβου: πρόκληση δράσης" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Σχεσιακή προβολή" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Για Επιλογές προβολής" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Επεξεργασία καννάβου: Αποθήκευση όλων των επεξεργασμένων κελιών μαζί" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Ο φάκελος στον διακομιστή όπου οι εξαγωγές μπορούν να αποθηκευτούν." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Φάκελος αποθήκευσης" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Αφήστε το άδειο αν δεν χρησιμοποιηθεί." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Σειρά πιστοποίησης φιλοξενητή" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Αφήστε κενό για προεπιλογές." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Κανόνες πιστοποίησης φιλοξενητή" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Δικαίωμα συνδέσεων χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Δικαίωμα ριζικής σύνδεσης" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Ζώνη ώρας συνεδρίας" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" "Ορίζει την ενεργή ζώνη ώρας, πιθανά διαφορετική από αυτή του διακομιστή σας" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" "Το βασίλειο του HTTP Basic Auth εμφανίζεται όταν γίνεται πιστοποίηση HTTP." -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Βασίλειο HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6830,19 +6839,19 @@ msgstr "" "υλικού SweKey[/a] (δεν βρίσκεται στο ριζικό φάκελο του εγγράφου; " "προτείνεται: /etc/swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Αρχείο ρυθμίσεων SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Μέθοδος επικύρωσης για χρήση." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Τύπος επικύρωσης" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6850,11 +6859,11 @@ msgstr "" "Αφήστε κενό αν δεν υπάρχει υποστήριξη [a@http://wiki.phpmyadmin.net/pma/" "bookmark]σελιδοδείκτη[/a], προτείνεται: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Πίνακας σελιδοδεικτών" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6862,33 +6871,33 @@ msgstr "" "Αφήστε κενό για να μη υπάρχουν σχόλια/τύποι mime στις στήλες, προτείνεται: " "[kbd]pma_column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Πίνακας πληροφοριών στήλης" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Συνδεση συμπίεσης στο διακομιστή MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Σύνδεση συμπίεσης" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" "Πως να συνδεθείτε στο διακομιστή, κρατήστε το [kbd]tcp[/kbd] αν δεν είστε " "σίγουρος/η." -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Τύπος σύνδεσης" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Έλεγχος κωδικού πρόσβασης χρήστη" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6897,11 +6906,11 @@ msgstr "" "Περισσότερες πληροφορίες είναι διαθέσιμες στο [a@http://wiki.phpmyadmin.net/" "pma/controluser]wiki[/a]." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Έλεγχος χρήστη" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6909,11 +6918,11 @@ msgstr "" "Ένας εναλλακτικός φιλοξενητής για αποθήκευση των ρυθμίσεων, αφήστε το κενό " "για χρήση του ήδη ορισμένου." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Έλεγχος φιλοξηνητή" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6923,15 +6932,15 @@ msgstr "" "αποθήκευση των ρυθμίσεων, αφήστε το κενό για χρήση της προεπιλεγμένης θύρας " "ή της ήδη ορισμένης θύρας αν το controlhost ισούται με το φιλοξενητή." -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Θύρα ελέγχου" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Απόκρυψη βάσεων δεδομένων που ταιριάζουν την κανονική έκφραση (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6940,15 +6949,15 @@ msgstr "" "bugs/2606/]PMA bug tracker[/a] και στο [a@http://bugs.mysql.com/19588]MySQL " "Bugs[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Απενεργοποίηση χρήσης του INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Απόκρυψη βάσεων δεδομένων" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6956,23 +6965,23 @@ msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL, προτείνεται: [kbd]" "pma_history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Πίνακας ιστορικού ερωτημάτων SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Ονομασία θέσης όπου εκτελείται ο διακομιστής MySQL." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Ονομασία θέσης διακομιστή" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Διεύθυνση URL αποσύνδεσης" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6980,15 +6989,15 @@ msgstr "" "Περιορίζει τον αριθμό των προτιμήσεων πινάκων που αποθηκεύονται στη βάση " "δεδομένων, οι παλαιές εγγραφές απομακρύνονται αυτόματα." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Μέγιστος αριθμός προτιμήσεων πινάκων για αποθήκευση" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Πίνακας αποθηκευμένων αναζητήσεων QBE" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6996,11 +7005,11 @@ msgstr "" "Αφήστε το κενό για μη υποστήριξη αποθηκευμένων αναζητήσεων QBE, προτείνεται: " "[kbd]pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Πίνακας κεντρικών στηλών" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -7008,15 +7017,15 @@ msgstr "" "Αφήστε το κενό για να μην υποστηρίζονται κεντρικές στήλες. Προτείνεται: [kbd]" "pma__central_columns[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Δοκιμάστε να συνδεθείτε χωρίς κωδικό πρόσβασης." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Σύνδεση χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7026,30 +7035,30 @@ msgstr "" "κάθετο χρησιμοποιήστε τα ως κανονικούς χαρακτήρες, π.χ. χρησιμοποιήστε " "[kbd]'my\\_db[/kbd]' και όχι [kbd]'my_db[/kbd]'." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Εμφάνιση μόνο των βάσεων δεδομένων από λίστα" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Αφήστε το άδειο αν δεν χρησιμοποιείτε ρύθμισμένη επικύρωση." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Κωδικός πρόσβασης για ρυθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "Σχέδιο PDF: πίνακας σελίδων" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7060,21 +7069,21 @@ msgstr "" "a] για λεπτομέρειες. Αφήστε κενό για να μην υπάρχει υποστήριξη. Προτείνεται: " "[kbd]phpmyadmin[/kbd]." -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" "Θύρα που αποκρίνεται ο διακομιστής MySQL. Αφήστε το άδειο για προεπιλογή." -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Θύρα διακομιστή" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7082,11 +7091,11 @@ msgstr "" "Αφήστε το κενό για μη «μόνιμους» πρόσφατα χρησιμοποιημένους πίνακες μεταξύ " "συνεδριών, προτείνεται: [kbd]pma__recent[/kbd]." -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Πρόσφατα χρησιμοποιημένος πίνακας" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7094,11 +7103,11 @@ msgstr "" "Αφήστε το κενό για μη «μόνιμους» αγαπημένους πίνακες μεταξύ συνεδριών, " "προτείνεται: [kbd]pma__favorite[/kbd]." -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Πίνακας αγαπημένων" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7107,11 +7116,11 @@ msgstr "" "pma/relation]συνδέσμων-συσχετίσεων[/a], προτείνεται: [kbd]pma__relation[/" "kbd]." -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Πίνακας συσχετίσεων" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7119,33 +7128,33 @@ msgstr "" "Δείτε τους [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]τύπους " "επικύρωσης[/a] για ένα παράδειγμα." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Ονομάσία συνεδρίας σύνδεσης" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Διεύθυνση URL σύνδεσης" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" "Η υποδοχή στην οποία ο διακομιστής MySQL αποκρίνεται. Αφήστε το κενό για " "προεπιλογή." -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Υποδοχή διακομιστή" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Ενεργοποιήση SSL για σύνδεση στο διακομιστή MySQL." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Χρήση SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7153,11 +7162,11 @@ msgstr "" "Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Σχεδιαστής και σχέδιο PDF: συντεταγμένες πίνακα" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7165,11 +7174,11 @@ msgstr "" "Ο πίνακας που περιγράφει τις προβαλλόμενες στήλες - αφήστε το κενό για να " "μην υποστηρίζεται, προτείνεται: [kbd]pma__table_info[/kbd]." -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Πίνακας προβολής στηλών" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7177,11 +7186,11 @@ msgstr "" "Αφήστε το κενό για μη «μόνιμο» περιβάλλον εργασίας ρυθμίσεων πινάκων μεταξύ " "συνεδριών, προτείνεται: [kbd]pma__table_uiprefs[/kbd]." -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Πίνακας προτιμήσεων UI" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7189,11 +7198,11 @@ msgstr "" "Όταν δηλωθεί DROP DATABASE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην " "καταγραφή κατά τη δημιουργία βάσης δεδομένων." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Προσθήκη της εντολής DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7201,11 +7210,11 @@ msgstr "" "Όταν δηλωθεί DROP TABLE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην " "καταγραφή κατά τη δημιουργία πίνακα." -#: libraries/config/messages.inc.php:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Προσθήκη DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7213,21 +7222,21 @@ msgstr "" "Όταν δηλωθεί DROP VIEW IF EXISTS θα προστεθεί ως πρώτη γραμμή στην καταγραφή " "κατά τη δημιουργία προβολής." -#: libraries/config/messages.inc.php:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Προσθήκη DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Ορίζει τη λίστα των δηλώσεων που χρησιμοποιεί η αυτόματη δημιουργία για νέες " "εκδόσεις." -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Δηλώσεις προς παρακολούθηση" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7235,11 +7244,11 @@ msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " "[kbd]pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Πίνακας ιστορικού παρακολούθησης ερωτημάτων SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7247,11 +7256,11 @@ msgstr "" "Αν ο μηχανισμός παρακολούθησης δημιουργεί εκδόσεις για πίνακες και προβολές " "αυτόματα." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Αυτόματη δημιουργία εκδόσεων" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7259,11 +7268,11 @@ msgstr "" "Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]" "pma__userconfig[/kbd]." -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Πίνακας αποθήκευσης προτιμήσεων χρήστη" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7273,11 +7282,11 @@ msgstr "" "ενεργοποίηση του χαρακτηριστικού μενού ρυθμίσεων. Αφήνοντας ένα από τα δύο " "κενό απενεργοποιείται το χαρακτηριστικό, προτείνεται: [kbd]pma__users[/kbd]." -#: libraries/config/messages.inc.php:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Πίνακας χρηστών" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7288,11 +7297,11 @@ msgstr "" "κενό απενεργοποιείται το χαρακτηριστικό, προτείνεται: [kbd]pma__usergroups[/" "kbd]." -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Πίνακας ομάδων χρηστών" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7300,15 +7309,15 @@ msgstr "" "Αφήστε το κενό για απενεργοποίηση του χαρακτηριστικού προσαρμόσιμων μενού, " "προτείνεται: [kbd]pma__navigationhiding[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Πίνακας κρυφών αντικειμένων πλοήγησης" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Χρήστης για ρυθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7316,19 +7325,20 @@ msgstr "" "Μια φιλοχρηστική περιγραφή αυτού του διακομιστή. Αφήστε το κενό για να " "εμφανίζεται το όνομα." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Φιλοχρηστικό όνομα διακομιστή" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." -msgstr "Αν θα εμφανίζεται στο χρήστη ένα κουμπί «εμφάνιση όλων (των εγγραφών)»." +msgstr "" +"Αν θα εμφανίζεται στο χρήστη ένα κουμπί «εμφάνιση όλων (των εγγραφών)»." -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Δικαίωμα προβολή όλων των γραμμών" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7339,47 +7349,47 @@ msgstr "" "ρυθμίσεων και αυτό δεν περιορίζει τη δυνατότητα άμεσης εκτέλεσης της ίδιας " "εντολής." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Εμφάνιση φόρμας αλλαγής κωδικού πρόσβασης" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Εμφάνιση φόρμας δημιουργίας βάσης δεδομένων" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" "Εμφάνιση ή απόκρυψη μιας στήλης εμφανίζοντας τη χρονοσφραγίδα Δημιουργίας " "για όλους τους πίνακες." -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Προβολή χρονοσφραγίδας δημιουργίας" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" "Εμφάνιση ή απόκρυψη μιας στήλης που θα εμφανίζει τη χρονοσφραγίδα Τελευταίας " "ενημέρωσης για όλους τους πίνακες." -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Εμφάνιση χρονοσφραγίδας Τελευταίας ενημερώσης" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" "Εμφάνιση ή απόκρυψη μιας στήλης που θα εμφανίζει τη χρονοσφραγίδα Τελευταίου " "ελέγχου για όλους τους πίνακες." -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Προβολή χρονοσφραγίδας τελευταίου ελέγχου" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7387,27 +7397,27 @@ msgstr "" "Ορίζει αν θα εμφανίζονται οι τύποι των πεδίων σε κατάσταση επεξεργασίας/" "εισαγωγής." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Εμφάνιση τύπων πεδίου" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Προβολή των πεδίων συναρτήσεων σε κατάσταση επεξεργασίας εισαγωγής." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Εμφάνιση πεδίων συναρτήσεων" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Αν θα εμφανίζεται επεξήγηση ή όχι." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Εμφάνιση επεξήγησης" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7415,65 +7425,65 @@ msgstr "" "Εμφανίζει σύνδεσμο για την τεκμηρίωση της συνάρτησης [a@http://php.net/" "manual/function.phpinfo.php]phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Εμφάνιση συνδέσμου phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Εμφάνιση λεπτομερών πληροφοριών διακομιστή MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" "Ορίζει αν τα δημιουργημένα ερωτήματα SQL από το phpMyAdmin πρέπει να " "προβάλονται." -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Εμφάνιση ερωτημάτων SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" "Ορίζεται αν το ερώτημα πρέπει να παραμείνει στην οθόνη μετά την υποβολή του." -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Διατήρηση παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" "Δικαίωμα προβολής στατιστικών βάσης δεδομένων και πινάκων (π.χ. χρήση χώρου " "στο δίσκο)." -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Εμφάνιση στατιστικών" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" "Επισήμανση χρησιμοποιημένων πινάκων και ενεργοποίηση της δυνατότητας " "προβολής των βάσεων δεδομένων με κλειδωμένους πίνακες." -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Παράβλεψη κλειδωμένων πινάκων" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Μια προειδοποίηση εμφανίζεται στη βασική σελίδα αν βρεθεί το Suhosin." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "προειδοποίηση Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7483,11 +7493,11 @@ msgstr "" "σελίδα αν η τιμή της ρύθμισης PHP session.gc_maxlifetime είναι λιγότερο από " "την τιμή του «LoginCookieValidity»." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Προειδοποίηση εγκυρότητας cookie σύνδεσης" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7496,11 +7506,11 @@ msgstr "" "πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2) και το παράθυρο των " "ερωτημάτων (x1,25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Στήλες textarea" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7509,33 +7519,33 @@ msgstr "" "πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2) και το παράθυρο των " "ερωτημάτων (x1,25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Γραμμές textarea" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται μια βάση δεδομένων." -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν δεν επιλέγεται τίποτα." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Προεπιλεγμένος τίτλος" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας διακομιστής." -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας πίνακας." -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -7547,28 +7557,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Λίστα αξιόπιστων διευθύνσεων IP για να επιτρέπεται/απαγορεύεται" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" "Φάκελος στο διακομιστή όπου μπορείτε να αποστείλετε αρχεία για εισαγωγή." -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Φάκελος αποστολής" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Επιτρέπει την αναζήτηση εντός ολόκληρης της βάσης δεδομένων." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Χρήση αναζήτησης βάσης δεδομένων" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7576,28 +7586,28 @@ msgstr "" "Όταν απενεργοποιηθεί, οι χρήστες δεν μπορούν να ορίσουν καμιά από τις " "παρακάτω επιλογές, ανεξάρτητα από την επιλογή στα δεξιά." -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Ενεργοποίηση της καρτέλας Δημιουργός στις ρυθμίσεις" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Έλεγχος για τελευταία έκδοση" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" "Ενεργοποιεί τον έλεγχο για τη τελευταία έκδοση στη κεντρική σελίδα του " "phpMyAdmin." -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7607,13 +7617,14 @@ msgstr "" "Το url του διακομιστή για χρήση όταν λαμβάνονται οι πληροφορίες για την " "τελευταία έκδοση του phpMyAdmin ή όταν υποβάλλονται αναφορές σφάλματος. Το " "χρειάζεστε αν ο διακομιστής που έχει εγκατασταθεί το phpMyAdmin δεν έχει " -"άμεση πρόσβαση στο διαδίκτυο. Η σύνταξη είναι: «όνομαδιακομιστή:αριθμόςθύρας»." +"άμεση πρόσβαση στο διαδίκτυο. Η σύνταξη είναι: «όνομαδιακομιστή:" +"αριθμόςθύρας»." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Διεύθυνση διακομιστή" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7624,19 +7635,19 @@ msgstr "" "Πιστοποίηση. Κανένας άλλος τύπος πιστοποίησης δεν υποστηρίζεται προς το " "παρόν." -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Όνομα χρήστη διακομιστή" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Ο κωδικός πρόσβασης για πιστοποίηση με τον διακομιστή." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Κωδικός πρόσβασης διακομιστή" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7644,36 +7655,36 @@ msgstr "" "Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]" "ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής." -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "Εισάγετε το δημόσιο κλειδί σας για τη βασική υπηρεσία reCaptcha σας." -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Δημόσιο κλειδί για reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "Εισάγετε το ιδιωτικό κλειδί σας για τη βασική υπηρεσία reCaptcha σας." -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Ιδιωτικό κλειδί για reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" "Επιλέξτε την προεπιλεγμένη ενέργεια όταν αποστέλετε αναφορές σφάλματος." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Αποστολή αναφορών σφάλματος" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." @@ -7681,11 +7692,11 @@ msgstr "" "Τα ερωτήματα εκτελούνται πατώντας το Enter (αντί του Ctrl+Enter). Οι νέες " "γραμμές θα εισαχθούν με το Shift+Enter." -#: libraries/config/messages.inc.php:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "Το Enter εκτελεί τα ερωτήματα στην κονσόλα" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7693,7 +7704,7 @@ msgstr "" "Ενεργοποιεί την κατάσταση Μηδενικής Ρύθμισης που σας επιτρέπει να ρυθμίσετε " "τους πίνακες αποθήκευσης ρυθμίσεων του phpMyAdmin αυτόματα." -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Ενεργοποίηση κατάστασης Μηδενικής Ρύθμισης" @@ -7713,44 +7724,44 @@ msgstr "Πιστοποίηση HTTP" msgid "Signon authentication" msgstr "Σειρά επικύρωσης" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV με χρήση LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Έγγραφο Λογιστικού Φύλλου Ανοιχτού Κώδικα - ODS" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Γρήγορο" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Προσαρμοσμένο" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Επιλογές εξαγωγής βάσης δεδομένων" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "Μορφή CSV για δεδομένα MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Έγγραφο Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα - ODΤ" @@ -7831,7 +7842,6 @@ msgid "New page" msgstr "Νέα σελίδα" #: libraries/db_designer.lib.php:297 libraries/db_designer.lib.php:300 -#| msgid "Save page" msgid "Save page as" msgstr "Αποθήκευση σελίδας ως" @@ -7959,20 +7969,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Χωρίς Κωδικό Πρόσβασης" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Κωδικός πρόσβασης:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Επαναεισαγωγή:" @@ -8110,8 +8120,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -8281,12 +8291,10 @@ msgstr "" "ξεκινόντας από το πρώτο:" #: libraries/display_import.lib.php:332 -#| msgid "Options" msgid "Other Options:" msgstr "Άλλες Επιλογές:" #: libraries/display_import.lib.php:338 -#| msgid "Disable foreign key checks" msgid "Disable foreign key check" msgstr "Απενεργοποίηση ελέγχου μη διακριτών κλειδιών" @@ -8674,11 +8682,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %" -"sΙστοσελίδα του PrimeBase XT%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην " +"%sΙστοσελίδα του PrimeBase XT%s." #: libraries/engines/pbxt.lib.php:138 msgid "Related Links" @@ -9143,7 +9151,7 @@ msgstr "Αποσύνδεση" msgid "phpMyAdmin documentation" msgstr "Τεκμηρίωση phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Επαναφόρτωση πίνακα πλοήγησης" @@ -9504,8 +9512,8 @@ msgid "" "In order to put the original table '%1$s' into Second normal form we need to " "create the following tables:" msgstr "" -"Με σκοπό την τοποθέτηση του αρχικού πίνακα «%1$s» στην Δεύτερη κανονική μορφή " -"χρειαζόμαστε να δημιουργήσουμε τους ακόλουθους πίνακες:" +"Με σκοπό την τοποθέτηση του αρχικού πίνακα «%1$s» στην Δεύτερη κανονική " +"μορφή χρειαζόμαστε να δημιουργήσουμε τους ακόλουθους πίνακες:" #: libraries/normalization.lib.php:417 #, php-format @@ -9838,8 +9846,8 @@ msgstr "Καλωσήρθατε στο %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε " "να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα." @@ -10071,7 +10079,7 @@ msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γρ #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Φιλοξενητής:" @@ -10534,8 +10542,8 @@ msgid "" "Converts Boolean values to text (default 'T' and 'F'). First option is for " "TRUE, second for FALSE. Nonzero=true." msgstr "" -"Μετατρέπει Δυαδικές τιμές σε κείμενο (Προεπιλογή «T» και «F»). Η πρώτη επιλογή " -"είναι για το ΑΛΗΘΕΣ, η δεύτερη για το ΨΕΥΔΕΣ. Nonzero=true." +"Μετατρέπει Δυαδικές τιμές σε κείμενο (Προεπιλογή «T» και «F»). Η πρώτη " +"επιλογή είναι για το ΑΛΗΘΕΣ, η δεύτερη για το ΨΕΥΔΕΣ. Nonzero=true." #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:31 msgid "" @@ -10554,8 +10562,8 @@ msgstr "" "επιλογή για να ορίσετε μια μορφή ημερομηνίας-ώρας. Η τρίτη επιλογή ορίζει αν " "θέλετε να δείτε την τοπική ή την παγκόσμια ώρα (χρήση «local» ή «utc» " "αντίστοιχα). Σύμφωνα με αυτό, η μορφή της ημερομηνίας έχει διαφορετική τιμή " -"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP και " -"για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()." +"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP " +"και για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()." #: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31 msgid "" @@ -11096,22 +11104,22 @@ msgstr "" "(my.cnf). Αν όχι, προσθέστε την παρακάτω γραμμή στον τομέα [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Όνομα χρήστη:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Όνομα χρήστη" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Κωδικός πρόσβασης" @@ -11139,10 +11147,10 @@ msgstr "Ταυτότητα Διακομιστή" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Φιλοξενητής" @@ -11156,38 +11164,38 @@ msgstr "" "είναι ορατές σε αυτή τη λίστα." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Οποιοδήποτε σύστημα" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Τοπικό" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Αυτός ο διακομιστής" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Οποιοσδήποτε χρήστης" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Χρήση πεδίου κειμένου:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Χρήση Οικείου Πίνακα" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11196,7 +11204,7 @@ msgstr "" "χρησιμοποιούνται τιμές που είναι αποθηκευμένες στον Οικείο πίνακα." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Επαναεισαγωγή" @@ -11935,7 +11943,7 @@ msgstr "Κανένα" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Ομάδας χρηστών" @@ -12013,14 +12021,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά." @@ -12029,7 +12037,7 @@ msgid "Administration" msgstr "Διαχείριση" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Γενικά δικαιώματα" @@ -12038,7 +12046,7 @@ msgid "Global" msgstr "Γενικά" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" @@ -12057,18 +12065,18 @@ msgstr "" "Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους " "πίνακες δικαιωμάτων." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Πληροφορίες Σύνδεσης" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12076,125 +12084,125 @@ msgstr "" "Ένας λογαριασμός με το ίδιο όνομα χρήστη υπάρχει ήδη αλλά πιθανά διαφορετικό " "φιλοξενητή." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Διατήρηση κωδικού πρόσβασης" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Ο κωδικός πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ανακαλέσατε τα δικαιώματα για %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Προσθήκη χρήστη" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Βάση δεδομένων για χρήστη" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Ο χρήστης προστέθηκε." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Χρήστης" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Χορήγηση" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Δεν υπάρχουν αρκετά δικαιώματα για προβολή χρηστών." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Δεν βρέθηκαν χρήστες." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Οποιοδήποτε" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "γενικός" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "σχετιζόμενος με βάση δεδομένων" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "μπαλαντέρ" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "σχετικός με πίνακα" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Επεξεργασία Δικαιωμάτων" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Ανάκληση" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Επεξεργασία ομάδας χρηστών" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… διατήρηση του παλιού χρήστη." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12202,93 +12210,93 @@ msgstr "" "… διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση των " "δικαιωμάτων." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Δικαιώματα πεδίων" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Προσθήκη δικαιωμάτων στην(ις) ακόλουθη(ες) βάση(εις) δεδομένων:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να " "χρησιμοποιηθούν." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Επαναφόρτωση δικαιωμάτων" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Διαγραφή %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Ο χρήστης %s υπάρχει ήδη!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Δικαιώματα για %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Νέος" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Επεξεργασία Δικαιωμάτων:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12296,17 +12304,17 @@ msgstr "" "Σημείωση: Προσπαθείτε να επεξεργαστείτε δικαιώματα του χρήστη με τον οποίο " "έχετε συνδεθεί." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Επισκόπηση χρηστών" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από " "τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -12314,11 +12322,11 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." @@ -12466,8 +12474,8 @@ msgid "" msgstr "" "Η Εποπτεία phpMyAdmin μπορεί να σας βοηθήσει να βελτιστοποιήσετε τη ρύθμιση " "του διακομιστή και να καταγράφει χρονοβόρα ερωτήματα. Για το τελευταίο θα " -"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει το " -"slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log " +"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει " +"το slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log " "παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και " "15%." @@ -14144,19 +14152,19 @@ msgstr "Επιλογή ευρετηρίου:" msgid "Key block size:" msgstr "Μέγεθος μπλοκ κλειδιού:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Τύπος ευρετηρίου:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Μεταφραστής:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Σχόλιο:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Σύρτε για ανακατανομή" @@ -15123,8 +15131,8 @@ msgid "" msgstr "" "Η λανθάνουσα μνήμη ερωτήματος είναι γνωστό ότι βελτιώνει σημαντικά την " "απόδοση, αν ρυθμιστεί σωστά. Ενεργοποιήστε τη ορίζοντας το " -"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε «ΟΝ». " -"Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση." +"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε " +"«ΟΝ». Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση." #: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -15205,8 +15213,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Η τρέχουσα αναλογία της ελεύθερης λανθάνουσας μνήμης ερωτήματος προς τη " "συνολική λανθάνουσα μνήμη ερωτήματος είναι %s%%. Πρέπει να είναι περισσότερο " @@ -15283,8 +15291,8 @@ msgid "" "value is, the better (This rules firing limit: 0.1%%)" msgstr "" "Ο βαθμός απομακρυσμένων ερωτημάτων προς τα εισερχόμενα ερωτήματα είναι %s%%. " -"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: 0,1%" -"%)" +"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: " +"0,1%%)" #: libraries/advisory_rules.txt:195 msgid "Query cache max size" @@ -15368,8 +15376,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "Το %s%% όλων των ταξινομήσεων προκαλεί προσωρινούς πίνακες, αυτή η τιμή " "πρέπει να είναι κάτω από 10%%." @@ -15937,8 +15945,8 @@ msgstr "" #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" -"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από 1%" -"%" +"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από " +"1%%" #: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" @@ -17213,8 +17221,8 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων %" -#~ "s;" +#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων " +#~ "%s;" #~ msgid "Unknown error while uploading." #~ msgstr "Άγνωστο σφάλμα κατά την αποστολή αρχείου." diff --git a/po/en_GB.po b/po/en_GB.po index 759d203801..1a483952a4 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,15 +5,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-02 14:11+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: English (United Kingdom) \n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.3-dev\n" @@ -69,7 +69,7 @@ msgstr "Table comments:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "Column" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "Links to" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "Primary" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "No" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -264,14 +264,14 @@ msgstr "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Table" @@ -284,7 +284,7 @@ msgid "Rows" msgstr "Rows" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Size" @@ -375,9 +375,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -574,15 +574,15 @@ msgstr "Add geometry" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -619,11 +619,11 @@ msgstr "complete inserts" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -706,7 +706,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Back" @@ -730,7 +730,7 @@ msgid "General Settings" msgstr "General Settings" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Change password" @@ -805,7 +805,7 @@ msgstr "Version information:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentation" @@ -1093,7 +1093,7 @@ msgstr "Add Index" msgid "Edit Index" msgstr "Edit Index" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Add %s column(s) to index" @@ -1128,7 +1128,7 @@ msgstr "You have to add at least one column." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1161,12 +1161,12 @@ msgstr "The host name is empty!" msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" @@ -1367,7 +1367,7 @@ msgstr "Please add at least one variable to the series!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1655,7 +1655,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1869,7 +1869,7 @@ msgstr "Show query box" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2141,7 +2141,7 @@ msgstr "Data point content" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignore" @@ -2334,7 +2334,7 @@ msgstr "Click the drop-down arrow
to toggle column's visibility." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Show all" @@ -2437,7 +2437,7 @@ msgstr "Hide Panel" msgid "Show hidden navigation tree items." msgstr "Show hidden navigation tree items." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main panel" @@ -2952,16 +2952,16 @@ msgid "Delete" msgstr "Delete" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3100,7 +3100,7 @@ msgid "During current session" msgstr "Skip current error" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3490,11 +3490,11 @@ msgstr "Your SQL query has been executed successfully." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3528,6 +3528,7 @@ msgstr "With selected:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3543,12 +3544,12 @@ msgstr "Change" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3742,7 +3743,7 @@ msgstr "" "removed." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3757,11 +3758,11 @@ msgstr "View" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3777,7 +3778,7 @@ msgstr "Structure" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3803,9 +3804,9 @@ msgstr "Insert" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privileges" @@ -3867,9 +3868,9 @@ msgid "Central columns" msgstr "Textarea columns" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Databases" @@ -3977,7 +3978,7 @@ msgid "Recent" msgstr "Recent" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Favourite tables" @@ -4048,7 +4049,7 @@ msgstr "Sorting" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4412,20 +4413,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4715,7 +4716,7 @@ msgstr "Max: %s%s" msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Explain SQL" @@ -4727,7 +4728,7 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "Without PHP Code" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Create PHP Code" @@ -4840,13 +4841,13 @@ msgstr "Description" msgid "Use this value" msgstr "Use this value" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5252,7 +5253,7 @@ msgid "Set value: %s" msgstr "Set value: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Restore default value" @@ -5672,23 +5673,35 @@ msgstr "Tab that is displayed when entering a table." msgid "Default table tab" msgstr "Default table tab" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Enclose table and column names with backquotes" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Enclose table and column names with backquotes" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Whether the table structure actions should be hidden." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Hide table structure actions" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Show server listing as a list instead of a drop down." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Display servers as a list" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5696,11 +5709,11 @@ msgstr "" "Disable the table maintenance mass operations, like optimising or repairing " "the selected tables of a database." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Disable multi table maintenance" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5708,39 +5721,39 @@ msgstr "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maximum execution time" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Add %s statement" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Save as file" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Character set of the file" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compression" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5750,60 +5763,60 @@ msgstr "Compression" msgid "Put columns names in the first row" msgstr "Put columns names in the first row" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Columns enclosed with" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Columns escaped with" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Replace NULL with" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Remove CRLF characters within columns" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Columns terminated with" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Lines terminated with" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel edition" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Database name template" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Server name template" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Table name template" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5812,137 +5825,137 @@ msgstr "Table name template" msgid "Dump table" msgstr "Dump table" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Include table caption" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Table caption" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME type" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Export method" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Save on server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Remember file name template" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Enclose table and column names with backquotes" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE options:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Creation/Update/Check dates" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Export views as tables" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Add %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Use hexadecimal for BINARY & BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Syntax to use when inserting data" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Export type" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Export time in UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Force secured connection while using phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Force SSL connection" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5950,142 +5963,142 @@ msgstr "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Foreign key dropdown order" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "A dropdown will be used if fewer items are present." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Foreign key limit" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Browse mode" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Customise browse mode." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Customise default options." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Developer" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Settings for phpMyAdmin developers." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Edit mode" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Customise edit mode." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Export defaults" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Customise default export options." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Features" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "General" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Set some commonly used options." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Import defaults" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Customise default common import options." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Import / export" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Set import and export directories and compression options." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Databases display options." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigation panel" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Customise appearance of the navigation panel." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servers" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Servers display options." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Tables display options." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Main panel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Other core settings" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Settings that didn't fit anywhere else." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Page titles" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6093,19 +6106,19 @@ msgstr "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Query window" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Customise query window options" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Security" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6113,23 +6126,23 @@ msgstr "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Basic settings" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Authentication" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Authentication settings." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Server configuration" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6137,15 +6150,15 @@ msgstr "" "Advanced server configuration, do not change these options unless you know " "what they are for." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Enter server connection parameters." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Configuration storage" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6155,11 +6168,11 @@ msgstr "" "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Changes tracking" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6167,108 +6180,108 @@ msgstr "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Customise export options" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Customise import defaults" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Customise navigation panel" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Customise main panel" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL queries" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL Query box" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Customise links shown in SQL Query boxes." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL queries settings." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Startup" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Customise startup page." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Database structure" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Choose which details to show in the database structure (list of tables)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Table structure" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Settings for the table structure (list of columns)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Tabs" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Choose how you want tabs to work." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Display relational schema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Paper size" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Text fields" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Customise text input fields." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Customise default options" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Warnings" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Disable some of the warnings shown by phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6276,15 +6289,15 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Extra parameters for iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6292,11 +6305,11 @@ msgstr "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignore multiple statement errors" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6306,28 +6319,28 @@ msgstr "" "This might be a good way to import large files, however it can break " "transactions." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Partial import: allow interrupt" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Disable foreign key checks" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Do not abort on INSERT error" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6335,68 +6348,68 @@ msgstr "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Format of imported file" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Use LOCAL keyword" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Column names in first row" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Do not import empty rows" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Import currencies (£5.00 to 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Import percentages as proper decimals (12.00% to .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Number of queries to skip from start." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Partial import: skip queries" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Do not use AUTO_INCREMENT for zero values" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Initial state for sliders" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "How many rows can be inserted at one time." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Number of inserted rows" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Maximum number of characters shown in any non-numeric column on browse view." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Limit column characters" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6406,11 +6419,11 @@ msgstr "" "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Delete all cookies on logout" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6418,11 +6431,11 @@ msgstr "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Recall user name" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6434,48 +6447,48 @@ msgstr "" "and will be deleted as soon as you close the browser window. This is " "recommended for non-trusted environments." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Login cookie store" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Define how long (in seconds) a login cookie is valid." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Login cookie validity" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Double size of textarea for LONGTEXT columns." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Bigger textarea for LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Maximum number of characters used when a SQL query is displayed." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Maximum displayed SQL length" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Users cannot set a higher value" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Maximum number of databases displayed in database list." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Maximum databases" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6483,11 +6496,11 @@ msgstr "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Maximum items on first level" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6495,11 +6508,11 @@ msgstr "" "The number of items that can be displayed on each page of the navigation " "tree." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Maximum items in branch" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6507,19 +6520,19 @@ msgstr "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Maximum number of rows to display" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Maximum number of tables displayed in table list." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maximum tables" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6527,41 +6540,41 @@ msgstr "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Memory limit" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Show hidden navigation tree items." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Show logo in navigation panel." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Display logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL where logo in the navigation panel will point to." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6569,29 +6582,29 @@ msgstr "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Logo link target" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Display server choice at the top of the navigation panel." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Display servers selection" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Target for quick access icon" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Target for quick access icon" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6599,15 +6612,15 @@ msgstr "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Minimum number of items to display the filter box" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Minimum number of databases to display the database filter box" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6615,97 +6628,97 @@ msgstr "" "Group items in the navigation tree (determined by the separator defined " "below)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Group items in the tree" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "String that separates databases into different tree levels." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Database tree separator" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "String that separates tables into different tree levels." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Table tree separator" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maximum table tree depth" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Highlight server under the mouse cursor." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Enable highlighting" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Whether to disable the possibility of database expansion or not." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Table navigation bar" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Maximum number of recently used tables; set 0 to disable." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Maximum number of favourite tables; set 0 to disable." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Recently used tables" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "These are Edit, Copy and Delete links." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Where to show the table row links" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Natural order" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Use only icons, only text or both." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Table navigation bar" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip output buffering" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6713,19 +6726,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Default sorting order" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Use persistent connections to MySQL databases." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Persistent connections" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6735,11 +6748,11 @@ msgstr "" "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6747,11 +6760,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Server/library difference warning" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6759,27 +6772,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "MySQL reserved word warning" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "How to display the menu tabs" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "How to display various action links" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Disallow BLOB and BINARY columns from editing." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Protect binary columns" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6789,127 +6802,127 @@ msgstr "" "storage). If disabled, this utilises JS-routines to display query history " "(lost by window close)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Permanent query history" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "How many queries are kept in history." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Query history length" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Recoding engine" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Remember table's sorting" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Default sorting order" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Repeat headers" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Grid editing: trigger action" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Relational display column" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Servers display options." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Grid editing: save all edited cells at once" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Directory where exports can be saved on server." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Save directory" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Leave blank if not used." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Host authorisation order" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Leave blank for defaults." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Host authorisation rules" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Allow logins without a password" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Allow root login" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Session value" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6919,19 +6932,19 @@ msgstr "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey config file" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Authentication method to use." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Authentication type" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6939,11 +6952,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Bookmark table" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6951,31 +6964,31 @@ msgstr "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Column information table" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Compress connection to MySQL server." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Compress connection" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Connection type" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Control user password" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6983,11 +6996,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Control user" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6995,11 +7008,11 @@ msgstr "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Control host" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -7009,15 +7022,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Control port" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Hide databases matching regular expression (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7025,15 +7038,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Disable use of INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Hide databases" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -7041,23 +7054,23 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Hostname where MySQL server is running." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Server hostname" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Logout URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -7065,15 +7078,15 @@ msgstr "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Maximal number of table preferences to store" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "QBE saved searches table" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -7081,13 +7094,13 @@ msgstr "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "Textarea columns" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7099,15 +7112,15 @@ msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Try to connect without password." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Connect without password" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7117,29 +7130,29 @@ msgstr "" "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " "[kbd]'my_db'[/kbd]." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Show only listed databases" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Leave empty if not using config auth." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Password for config auth" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF schema: pages table" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7149,20 +7162,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Database name" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Server port" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7170,11 +7183,11 @@ msgstr "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Recently used table" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7186,13 +7199,13 @@ 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 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Favourite tables" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7200,11 +7213,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relation table" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7212,31 +7225,31 @@ msgstr "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Signon session name" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Enable SSL for connection to MySQL server." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Use SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7244,13 +7257,13 @@ msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF schema: table coordinates" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7258,11 +7271,11 @@ msgstr "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Display columns table" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7270,11 +7283,11 @@ msgstr "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "UI preferences table" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7282,11 +7295,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Add DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7294,11 +7307,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Add DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7306,20 +7319,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Add DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Statements to track" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7327,11 +7340,11 @@ msgstr "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL query tracking table" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7339,11 +7352,11 @@ msgstr "" "Whether the tracking mechanism creates versions for tables and views " "automatically." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Automatically create versions" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7351,11 +7364,11 @@ msgstr "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "User preferences storage table" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7365,11 +7378,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Users table" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7379,11 +7392,11 @@ msgstr "" "menus feature; leaving either one of them blank will disable this feature, " "suggested: [kbd]pma__usergroups[/kbd]." -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "User groups table" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7391,15 +7404,15 @@ msgstr "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Hidden navigation items table" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "User for config auth" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7407,19 +7420,19 @@ msgstr "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Verbose name of this server" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Allow to display all the rows" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7429,44 +7442,44 @@ 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Show password change form" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Show create database form" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Show Creation timestamp" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Show Last update timestamp" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Show Last check timestamp" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7474,27 +7487,27 @@ msgstr "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Show field types" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Display the function fields in edit/insert mode." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Show function fields" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Whether to show hint or not." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Show hint" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7502,61 +7515,61 @@ msgstr "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Show phpinfo() link" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Show detailed MySQL server information" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Show SQL queries" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Retain query box" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Show statistics" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Skip locked tables" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "A warning is displayed on the main page if Suhosin is detected." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin warning" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7569,57 +7582,57 @@ 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:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Login cookie validity" -#: libraries/config/messages.inc.php:778 -msgid "" -"Textarea size (columns) in edit mode, this value will be emphasized for SQL " -"query textareas (*2) and for query window (*1.25)." -msgstr "" -"Textarea 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:779 -msgid "Textarea columns" -msgstr "Textarea columns" - #: libraries/config/messages.inc.php:780 msgid "" -"Textarea size (rows) in edit mode, this value will be emphasized for SQL " +"Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -"Textarea size (rows) in edit mode, this value will be emphasized for SQL " +"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:781 +msgid "Textarea columns" +msgstr "Textarea columns" + +#: libraries/config/messages.inc.php:782 +msgid "" +"Textarea size (rows) in edit mode, this value will be emphasized for SQL " +"query textareas (*2) and for query window (*1.25)." +msgstr "" +"Textarea 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:783 msgid "Textarea rows" msgstr "Textarea rows" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Title of browser window when nothing is selected." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Default title" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7631,27 +7644,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "List of trusted proxies for IP allow/deny" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Upload directory" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Allow for searching inside the entire database." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Use database search" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7659,26 +7672,26 @@ msgstr "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Enable the Developer tab in settings" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Check for latest version" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7690,11 +7703,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:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Proxy url" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7704,19 +7717,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Proxy username" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "The password for authenticating with the proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Proxy password" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7724,53 +7737,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Public key for reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Private key for reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "Choose the default action when sending error reports." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Send error reports" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Executed queries" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7792,44 +7805,44 @@ msgstr "HTTP authentication" msgid "Signon authentication" msgstr "Signon authentication" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Open-Document Spreadsheet" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Quick" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Custom" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Database export options" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV for MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Open-Document Text" @@ -8059,20 +8072,20 @@ msgstr "Can't count rows in an unbuffered result set" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "No Password" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Password:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Re-type:" @@ -8209,12 +8222,12 @@ msgstr ", @TABLE@ will become the table name" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:526 msgid "use this for future exports" @@ -8776,11 +8789,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." #: libraries/engines/pbxt.lib.php:138 msgid "Related Links" @@ -9243,7 +9256,7 @@ msgstr "Log out" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin documentation" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Reload navigation panel" @@ -9909,11 +9922,11 @@ msgstr "Welcome to %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10141,7 +10154,7 @@ msgstr "Put columns names in the first row:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Host:" @@ -11188,22 +11201,22 @@ msgstr "" "not, please add the following line into [mysqld] section:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "User name:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "User name" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Password" @@ -11231,10 +11244,10 @@ msgstr "Server ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -11248,38 +11261,38 @@ msgstr "" "this list." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Any host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "This Host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Any user" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Use text field:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Use Host Table" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11288,7 +11301,7 @@ msgstr "" "table are used instead." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Re-type" @@ -12017,7 +12030,7 @@ msgstr "None" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "User group" @@ -12086,14 +12099,14 @@ msgstr "Limits the number of simultaneous connections the user may have." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Table-specific privileges" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Note: MySQL privilege names are expressed in English." @@ -12102,7 +12115,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Global privileges" @@ -12111,7 +12124,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Database-specific privileges" @@ -12129,18 +12142,18 @@ msgid "" msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Login Information" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Use text field" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12148,125 +12161,125 @@ msgstr "" "An account already exists with the same username but possibly a different " "hostname." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Do not change the password" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "You have revoked the privileges for %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Add user" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Database for user" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Create database with same name and grant all privileges." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Grant all privileges on wildcard name (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Grant all privileges on database \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Users having access to \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "User has been added." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "User" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "No user found." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Any" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "database-specific" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "table-specific" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Edit Privileges" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Revoke" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Edit user group" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… keep the old one." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… delete the old one from the user tables." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revoke all active privileges from the old one and delete it afterwards." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12274,120 +12287,120 @@ msgstr "" "… delete the old one from the user tables and reload the privileges " "afterwards." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Create a new user with the same privileges and …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database:" msgid "Add privileges on the following database(s):" msgstr "Add privileges on the following database:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "Wildcards % and _ should be escaped with a \\ to use them literally." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Add privileges on the following table:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Remove selected users" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Deleting %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Privileges for %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "New" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Edit Privileges:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Users overview" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "You have added a new user." @@ -14202,21 +14215,21 @@ msgstr "Index cache size" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Index type:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "User:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Comment:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15258,11 +15271,11 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" #: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" @@ -15412,11 +15425,11 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." #: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" diff --git a/po/eo.po b/po/eo.po index b1e637c901..f154fe8841 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-01-01 17:51+0200\n" "Last-Translator: Eliovir \n" "Language-Team: Esperanto \n" +"Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2-dev\n" @@ -71,7 +71,7 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -265,14 +265,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "" @@ -285,7 +285,7 @@ msgid "Rows" msgstr "" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "" @@ -373,9 +373,9 @@ msgstr "" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -566,15 +566,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -605,8 +605,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -678,7 +678,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -699,7 +699,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -772,7 +772,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -992,7 +992,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1019,7 +1019,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1048,12 +1048,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1250,7 +1250,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1521,7 +1521,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1732,7 +1732,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1972,7 +1972,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2233,7 +2233,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2716,16 +2716,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2840,7 +2840,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3214,8 +3214,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3250,6 +3250,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3265,12 +3266,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3457,7 +3458,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3472,11 +3473,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3492,7 +3493,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3518,9 +3519,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3580,9 +3581,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3690,7 +3691,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "" @@ -3761,7 +3762,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4102,14 +4103,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4357,7 +4358,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4369,7 +4370,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4480,13 +4481,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4873,7 +4874,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5227,70 +5228,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5300,60 +5309,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5362,586 +5371,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5949,1042 +5958,1042 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -6992,52 +7001,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7045,80 +7054,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7138,44 +7147,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7379,20 +7388,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Pasvorto:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7527,8 +7536,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8018,8 +8027,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8474,7 +8483,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9112,8 +9121,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9336,7 +9345,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10232,22 +10241,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Uzantonomo:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Uzantonomo" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Pasvorto" @@ -10275,10 +10284,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10290,45 +10299,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11045,7 +11054,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11110,14 +11119,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11126,7 +11135,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11135,7 +11144,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11152,253 +11161,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -12991,21 +13000,21 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "Password:" msgid "Parser:" msgstr "Pasvorto:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -13951,8 +13960,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14070,8 +14079,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/es.po b/po/es.po index 0a313aec5d..3c1496493b 100644 --- a/po/es.po +++ b/po/es.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-05 21:07+0200\n" "Last-Translator: Macofe \n" "Language-Team: Spanish \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.3-dev\n" @@ -67,7 +67,7 @@ msgstr "Comentarios de la tabla:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Columna" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Enlaces a" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Primaria" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "No" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -259,18 +259,18 @@ msgstr "Se copió la base de datos %1$s a %2$s." msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -"El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. %" -"sAverigüe por qué%s." +"El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. " +"%sAverigüe por qué%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabla" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Filas" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Tamaño" @@ -375,9 +375,9 @@ msgstr "Estado actual" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -574,15 +574,15 @@ msgstr "Agregar geometría" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -597,8 +597,8 @@ msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena ubicada " -"debajo en el campo \"Valor\"." +"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena " +"ubicada debajo en el campo \"Valor\"." #: import.php:54 msgid "Succeeded" @@ -615,8 +615,8 @@ msgstr "Parámetros incompletos" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Probablemente intentó cargar un archivo demasiado grande. Revise %sla " "documentation%s para hallar modos de superar esta limitación." @@ -706,7 +706,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Volver" @@ -730,7 +730,7 @@ msgid "General Settings" msgstr "Configuraciones generales" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Cambio de contraseña" @@ -805,7 +805,7 @@ msgstr "Acerca de esta versión:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentación" @@ -918,8 +918,8 @@ msgid "" "extended features have been deactivated. %sFind out why%s. " msgstr "" "El almacenamiento de configuración phpMyAdmin no está completamente " -"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %" -"sAverigüe por qué%s. " +"configurado, algunas funcionalidades extendidas fueron deshabilitadas. " +"%sAverigüe por qué%s. " #: index.php:549 msgid "" @@ -1070,7 +1070,7 @@ msgstr "Agregar índice" msgid "Edit Index" msgstr "Editar índice" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Agregar %s columna(s) al índice" @@ -1097,7 +1097,7 @@ msgstr "Debe agregar al menos una columna." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Previsualizar SQL" @@ -1126,12 +1126,12 @@ msgstr "¡El nombre del servidor está vacío!" msgid "The user name is empty!" msgstr "¡El nombre de usuario está vacío!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" @@ -1335,7 +1335,7 @@ msgstr "¡Introduzca una longitud válida!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1631,7 +1631,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1844,7 +1844,7 @@ msgstr "Mostrar ventana de consultas SQL" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1954,8 +1954,8 @@ msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -"Nota: «a, b -> d, f» implica que los valores combinados de las columnas a y b " -"pueden determinar el valor de las columnas d y f." +"Nota: «a, b -> d, f» implica que los valores combinados de las columnas a y " +"b pueden determinar el valor de las columnas d y f." #: js/messages.php:331 msgid "No partial dependencies selected!" @@ -2097,7 +2097,7 @@ msgstr "Contenido del punto de datos" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorar" @@ -2277,7 +2277,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Mostrar todo" @@ -2382,7 +2382,7 @@ msgstr "Esconder panel" msgid "Show hidden navigation tree items." msgstr "Mostrar los elementos escondidos del árbol de navegación." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Enlace al panel principal" @@ -2889,16 +2889,16 @@ msgid "Delete" msgstr "Borrar" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3015,7 +3015,7 @@ msgid "During current session" msgstr "durante la sesión actual" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3397,11 +3397,11 @@ msgstr "Su consulta se ejecutó con éxito." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista tiene al menos este número de filas. Refiérase a la %" -"sdocumentation%s." +"Esta vista tiene al menos este número de filas. Refiérase a la " +"%sdocumentation%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3435,6 +3435,7 @@ msgstr "Para los elementos que están marcados:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3450,12 +3451,12 @@ msgstr "Cambiar" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3650,7 +3651,7 @@ msgstr "" "uno." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Servidor" @@ -3665,11 +3666,11 @@ msgstr "Visualizar" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3685,7 +3686,7 @@ msgstr "Estructura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3711,9 +3712,9 @@ msgstr "Insertar" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegios" @@ -3773,9 +3774,9 @@ msgid "Central columns" msgstr "Columnas centrales" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Bases de datos" @@ -3883,7 +3884,7 @@ msgid "Recent" msgstr "Reciente" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Tablas favoritas" @@ -3954,7 +3955,7 @@ msgstr "Ordenación" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4324,16 +4325,16 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Un número de coma flotante pequeño; los valores posibles son de -3.402823466E" "+38 a -1.175494351E-38, 0 y de 1.175494351E-38 a 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Un número de coma flotante de precisión doble; los valores permitidos son de " @@ -4377,8 +4378,8 @@ msgstr "Una fecha, el rango válido es de «%1$s» a «%2$s»" #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a «%2" -"$s»" +"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a " +"«%2$s»" #: libraries/Types.class.php:348 msgid "" @@ -4478,8 +4479,8 @@ msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 - " -"1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que " +"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 " +"- 1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que " "indica la cantidad de bytes en el valor" #: libraries/Types.class.php:372 @@ -4505,9 +4506,9 @@ msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -"Una columna de bloque de texto («BLOB») con una longitud máxima de 4294967295 " -"(2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que indica la " -"longitud del valor" +"Una columna de bloque de texto («BLOB») con una longitud máxima de " +"4294967295 (2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que " +"indica la longitud del valor" #: libraries/Types.class.php:378 msgid "" @@ -4639,7 +4640,7 @@ msgstr "Máximo: %s%s" msgid "MySQL said: " msgstr "MySQL ha dicho: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Explicar SQL" @@ -4651,7 +4652,7 @@ msgstr "Omitir la explicación del SQL" msgid "Without PHP Code" msgstr "Sin código PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Crear código PHP" @@ -4764,13 +4765,13 @@ msgstr "Descripción" msgid "Use this value" msgstr "Use este valor" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5174,7 +5175,7 @@ msgid "Set value: %s" msgstr "Valor establecido: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Restaurar valor predeterminado" @@ -5274,8 +5275,8 @@ msgid "" "%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause " "random session invalidation (currently session.gc_maxlifetime is %d)." msgstr "" -"Valores para la %svalidez de la cookie de inicio de sesión%s mayores a %" -"ssession.gc_maxlifetime%s pueden causar invalidaciones de sesión aleatorias " +"Valores para la %svalidez de la cookie de inicio de sesión%s mayores a " +"%ssession.gc_maxlifetime%s pueden causar invalidaciones de sesión aleatorias " "(actualmente, el valor de session.gc_maxlifetime es %d)." #: libraries/config/ServerConfigChecks.class.php:413 @@ -5609,23 +5610,35 @@ msgstr "Pestaña que se muestra cuando accede a una tabla." msgid "Default table tab" msgstr "Ceja predeterminada de la tabla" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Encerrar nombres de tabla y columna con comillas invertidas" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Encerrar nombres de tabla y columna con comillas invertidas" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Si se debe esconder las acciones sobre la estructura de la tabla." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Esconder acciones sobre la estructura de la tabla" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Mostrar los servidores en una lista en lugar de una caja desplegable." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Mostrar los servidores en una lista" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5633,11 +5646,11 @@ msgstr "" "Desactivar las operaciones masivas de mantenimiento en tablas como " "optimización y reparación de las tablas seleccionadas de una base de datos." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Dsactivar mantenimiento de muchas tabla" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5645,39 +5658,39 @@ msgstr "" "Definir el tiempo máximo permitido (en segundos) para la ejecución de un " "script ([kbd]0[/kbd] para ilimitado)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Tiempo máximo de ejecución" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Agregar sentencia %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Guardar como archivo" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Conjunto de caracteres del archivo" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compresión" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5687,62 +5700,62 @@ msgstr "Compresión" msgid "Put columns names in the first row" msgstr "Poner los nombres de campo en la primera fila" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Columnas encerradas entre" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Caracter de escape de columnas" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Reemplazar NULL con" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Eliminar los caracteres CRLF en las columnas" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Columnas terminadas con" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Líneas terminadas en" # Used on libraries/export/csv.php to decide what level of compatibility needs # due to excel version -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Versión de Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Nombre de la plantilla de la base de datos" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Nombre de la plantilla del servidor" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Nombre de la plantilla de la tabla" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5751,139 +5764,139 @@ msgstr "Nombre de la plantilla de la tabla" msgid "Dump table" msgstr "Volcar tabla" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Incluir el subtitulado de la tabla" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Subtitulado de la tabla" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Continuación del subtitulado de la tabla" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Clave de la etiqueta" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relaciones" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Método de exportación" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Guardar en el servidor" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Sobreescribir el(los) archivo(s) existente(s)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Recordar el nombre de la plantilla del archivo" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Encerrar nombres de tabla y columna con comillas invertidas" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Modo compatible con SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Opciones CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Fechas de creación/actualización/revisión" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Utilizar inserciones con retraso" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Deshabilitar la revisión de las claves foráneas" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exportar vistas como tablas" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Añada %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Use hexadecimal para BINATY y BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Usar la opción ignore inserts" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Sintaxis a utilizar para insertar datos" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Longitud máxima de la consulta creada" # Used as description for SQL syntax Export Type (options are INSERT, UPDATE # and REPLACE) -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Tipo de exportación" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Incluir lo exportado en una transacción" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exportar hora en UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Forzar conexión segura mientras usa phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Forzar la conexión SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5892,144 +5905,144 @@ msgstr "" "foráneas; [kbd]content[/kbd] son los datos referidos, [kbd]id[/kbd] es el " "valor clave." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Orden de despliegue de las claves foráneas" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Se usará un menú dropdown si hay menos ítems presentes." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Límite de las claves foráneas" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Modalidad de navegación" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Cambiar las opciones de la modalidad de visualización." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Personalizar las opciones predeteminadas." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Desarrollador" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Configuración para desarrolladores de phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Modalidad de edición" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Cambiar las opciones de la modalidad de edición." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Exportar las opciones predeterminadas" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Personalizar las opciones comunes de exportación predeteminadas." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Características" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "General" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Definir algunas opciones usadas normalmente." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importar las opciones predeterminadas" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Personalizar las opciones comunes de importación predeteminadas." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importar / exportar" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" "Seleccione los directorios para importar y exportar así como las opciones de " "compresión." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Opciones para visualizar las bases de datos." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Panel de navegación" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Cambiar la apariencia del panel de navegación." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servidores" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Opciones para visualizar los servidores." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Opciones para visualizar las tablas." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Panel principal" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Otros parámetros cruciales" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Parámetros que no encajaban en otra parte." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Títulos de página" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6038,19 +6051,19 @@ msgstr "" "[doc@cfg_TitleTable]documentación[/doc] para ver las palabras mágicas que " "podrán ser usadas para obtener valores especiales." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Ventana de consulta" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Personalizar las opciones de la ventana de consulta" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Seguridad" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6058,23 +6071,23 @@ msgstr "" "Tenga en cuenta que phpMyAdmin es solamente una interfaz y sus opciones no " "limitan a MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Configuraciones básicas" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autentificación" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Configuración de autentificación." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Configuración del servidor" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6082,15 +6095,15 @@ msgstr "" "Configuración avanzada del servidor, no cambie estas opciones a menos que " "usted conozca como funcionan." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Escriba los ajustes básicos del servidor." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Almacenamiento de configuración" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6100,11 +6113,11 @@ msgstr "" "adicionales, mire [doc@linked-tables]linked-tables infrastructure[/doc] en " "la documentación." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Seguimiento de cambios" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6112,109 +6125,109 @@ msgstr "" "Seguimiento de cambios hechos en la base de datos. Requiere almacenamiento " "de configuración phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Personalizar las opciones para la exportación" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Personalizar los parámetros de importación predeterminados" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Personalizar el panel de navegación" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Personalizar el panel principal" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Consultas SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Ventana de consultas SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Cambiar los enlaces mostrados en las ventanas de consulta SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Configuración de las consultas SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Inicio" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Cambiar las opciones de la página de arranque." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Estructura de base de datos" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Elija los detalles a mostrar en la estructura de base de datos (lista de " "tablas)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Estructura de tabla" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Configuración de la estructura de la tabla (lista de columnas)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Tabulaciones" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Seleccione como quiere que funcionen las tabulaciones." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Mostrar esquema relacional" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Tamaño del papel" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Campos de texto" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Personalizar los campos de entrada de texto." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texto «Texy!»" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Personalizar las opciones predeteminadas" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Advertencias" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Desactivar algunas de las advertencias mostradas por phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6222,15 +6235,15 @@ msgstr "" "Habilite la compresión [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] para " "las operaciones de importación y exportación." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Parámetros adicionales para iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6238,11 +6251,11 @@ msgstr "" "De estar activado, phpMyAdmin continúa computando consultas con múltiples " "sentencias incluso si falló una de las consultas." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignorar errores en sentencias múltiples" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6252,28 +6265,28 @@ msgstr "" "acercando al límite de tiempo. Esta puede ser una buena forma para importar " "archivos grandes, sin embargo, puede romper las transacciones." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Importación parcial: permitir interrupciones" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Deshabilitar la revisión de las claves foráneas" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "No abortar si ocurre un error con INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Reemplazar los datos de la tabla con los del archivo" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6281,69 +6294,69 @@ msgstr "" "Formato predeterminado; tenga presente que esta lista depende de la " "localización (base de datos, tabla) y solamente SQL está disponible siempre." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formato del archivo importado" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Use la palabra clave LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Nombres de columna en la primera fila" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "No importar filas vacías" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importar monedas (€5.00 como 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importar porcentajes como números decimales (12.00% como .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Número de consultas a saltarse desde el inicio." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Importación parcial: saltarse las consultas" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No utilizar AUTO_INCREMENT para los valores iguales a cero" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Estado inicial de los deslizadores" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Cuántas filas se pueden insertar de una vez." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Número de filas insertadas" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Cantidad máxima de caracteres a mostrar en un campo no-numérico en vista de " "navegación." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Límite de caracteres de la columna" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6355,11 +6368,11 @@ msgstr "" "que debe finalizar sesión de otros servidores cuando se conecta a múltiples " "servidores." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Eliminar todas las cookies al finalizar sesión" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6367,11 +6380,11 @@ msgstr "" "Define si el inicio de sesión anterior se debe recordar o no en la modalidad " "autenticación mediante [kbd]cookie[/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Recordar el nombre del usuario" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6383,51 +6396,51 @@ msgstr "" "para la sesión actual y se borrará tan pronto cierre la ventana del " "navegador. Esto es recomendable para entornos no confiables." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Almacenamiento de cookies de inicio de sesión" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" "Define por cuánto tiempo (en segundos) es válido un cookie de inicio de " "sesión." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Validez del cookie usado para el inicio de sesión" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Doble tamaño del textarea para las columnas LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "textarea más grande para LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Número máximo de caracteres usados al mostrar una consulta SQL." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Máxima longitud al mostrar consulta SQL" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Los usuarios no pueden definir un valor más alto" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" "Número máximo de bases de datos mostradas en una lista de bases de datos." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Número máximo de bases de datos" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6435,11 +6448,11 @@ msgstr "" "El número de elementos que pueden ser mostrados en cada página en el primer " "nivel del árbol de navegación." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Cantidad máxima de elementos en el primer nivel" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6447,11 +6460,11 @@ msgstr "" "El número de elementos que pueden ser mostrados en cada página del árbol de " "navegación." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Cantidad máxima de elementos en una rama" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6460,19 +6473,19 @@ msgstr "" "juego de resultados contiene más filas, aparecerán enlaces \"Anterior\" y " "\"Siguiente\"." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Máximo número de filas a mostrar" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Número máximo de tablas mostradas en una lista de tablas." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Número máximo de tablas" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6480,42 +6493,42 @@ msgstr "" "El número de bytes que un script puede reservar. ej. [kbd]32M[/kbd] ([kbd]0[/" "kbd] para ilimitado)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Límite de la memoria" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" "En el panel de navegación, reemplaza el árbol de base de datos con un " "selector" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Mostrar las bases de datos navegación como árbol" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Enlace con el panel principal resaltando la base de datos o tabla actual." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Mostrar el logo en el panel de navegación." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Mostrar el logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL a la que apuntará el logo en el panel de navegación." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL para enlace del logo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6523,28 +6536,28 @@ msgstr "" "Abrir la página enlazada en la ventana principal ([kbd]principal[/kbd]) o en " "una nueva ([kbd]nueva[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Logo destino del enlace" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" "Mostrar la elección de servidor en la parte superior del panel de navegación." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Mostrar la selección de servidores" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Destino para el icono de acceso rápido" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Objetivo para el segundo icono de acceso rápido" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6552,17 +6565,17 @@ msgstr "" "Define el número mínimo de elementos (tablas, vistas, rutinas y eventos) " "para mostrar un cuadro de filtro." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Número mínimo de elementos para mostrar la caja de filtro" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" "Número mínimo de bases de datos a mostrar en la ventana de filtro de bases " "de datos" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6570,99 +6583,99 @@ msgstr "" "Agrupar elementos en el árbol de navegación (determinado por el separador " "definido abajo)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Agrupar elementos en el árbol" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Cadena que separa bases de datos en diferentes niveles de árbol." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Separador de árbol de base de datos" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Cadena que separa tablas en diferentes niveles de árbol." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Separador de árbol de tablas" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Profundidad máxima del árbol de tablas" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Resaltar servidor bajo el cursor." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Permitir destacar" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Si se desactiva la posibilidad de expandir bases de datos o no." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Barra de navegación mediante tablas" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Número máximo de tablas recientemente utilizadas; 0 para desactivar." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Cantidad máxima de tablas favoritas; 0 para desactivar." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Tablas recientemente utilizadas" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Estos son los enlaces para Editar, Copiar y Borrar." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Donde mostrar los enlaces de filas de tabla" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Orden natural" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Use solamente íconos, solamente texto o ambos." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Barra de navegación mediante tablas" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Buffer de salida de GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6670,19 +6683,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Orden de despliegue predeterminado" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Use conexiones persistentes para las bases de datos MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Conexiones persistentes" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6692,11 +6705,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Faltan las tablas de almacenaje de configuración de phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6704,11 +6717,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Advertencia de diferencia servidor/biblioteca" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6717,27 +6730,27 @@ msgstr "" "Estructura si algún nombre de columna en una tabla es una palabra reservada " "de MySQL." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Advertencia de palabra reservada de MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Cómo mostrar las pestañas del menú" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Cómo mostrar varios enlaces de acciones" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "No permitir la edición de columnas BLOB y BINARIAS." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Proteger los campos binarios" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6748,126 +6761,126 @@ msgstr "" "rutinas JavaScript para mostrar el histórico de consultas (olvidado al " "cerrar la ventana)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Histórico permanente de consultas" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Cuántas consultas se guardan en el histórico." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Longitud del histórico de consultas" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Motor de recodificación" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Recordar ordenamiento de la tabla" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Ordenación predeterminada por clave primaria" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Repetir cabeceras" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 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:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Mostrar columna de relación" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Opciones de visualización" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Directorio de almacenamiento" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Deje en blanco si no necesita usarlo." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Orden en que se autentica el Host" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Deje en blanco para usar los valores predeterminados." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Reglas de autorización del Host" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Permitir inicio de sesión sin contraseña" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Permitir el inicio de sesión como root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Huso horario de la sesión" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Dominio HTTP (Realm)" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6877,19 +6890,19 @@ msgstr "" "dispositivo SweKey[/a] (no localizado en su raíz de documentos; valor " "sugerido: /etc/swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Archivo de configuración SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Método de autenticación a usar." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6897,11 +6910,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Agregar tabla a favoritos" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6909,33 +6922,33 @@ msgstr "" "Dejar en blanco para evitar comentarios/tipos MIME en celdas, sugerido: [kbd]" "pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabla con información de la columna" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Conexión de compresión con el servidor SQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Conexión de compresión" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Tipo de conexión" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Controlar la contraseña del usuario" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6943,11 +6956,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Controlar al usuario" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6955,11 +6968,11 @@ msgstr "" "Alternativa para guardar el almacenamiento de configuración; deje vacío para " "utilizar el ya definido." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Anfitrión de control" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6969,17 +6982,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Puerto de control" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 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:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6987,15 +7000,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Deshabilitar el uso de INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Ocultar las bases de datos" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -7003,23 +7016,23 @@ msgstr "" "Dejar en blanco para evitar soporte de histórico de consultas SQL, sugerido: " "[kbd]pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabla de histórico de consultas SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Descripción del servidor." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Nombre del servidor" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL de fin de sesión" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -7027,15 +7040,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:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Número máximo de preferencias sobre tablas a almacenar" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Tabla QBE de búsquedas guardadas" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -7043,11 +7056,11 @@ msgstr "" "Dejar en blanco para omitir la compatibilidad con búsquedas guardadas QBE, " "sugerido: [kbd]pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Tabla de columnas centrales" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -7055,15 +7068,15 @@ msgstr "" "Dejar en blanco para desactivar el soporte a las columnas centrales, " "sugerencia: [kbd]pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Intente conectar sin contraseña." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Conecte sin contraseña" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7073,30 +7086,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Muestre solamente las bases de datos listadas" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Deje vacío si no está usando config auth." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Contraseña para config auth" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "Esquema de PDF: tabla de páginas" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7107,22 +7120,22 @@ msgstr "" "completa. Deje en blanco para que no exita soporte. Predeterminado: [kbd]" "phpmyadmin[/kbd]." -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Nombre de la base de datos" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Puerto del servidor" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7130,11 +7143,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Tabla recientemente utilizada" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7142,11 +7155,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Tablas favoritas" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7155,11 +7168,11 @@ msgstr "" "relation]relation-links[/a], de manera predeterminada: [kbd]pma__relation[/" "kbd]." -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Tabla de relaciones" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7167,33 +7180,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:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Nombre de la sesión al signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL de signon" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Puerto del servidor" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Habilitar SSL para conexión con el servidor SQL." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Usar SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7201,11 +7214,11 @@ msgstr "" "Dejar en blanco para evitar soporte de esquema en PDF, sugerido: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Esquema en PDF y diseñador: tabla de coordenadas" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7213,11 +7226,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Mostrar tabla de columnas" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7226,11 +7239,11 @@ msgstr "" "interfaz de tablas entre sesiones, valor sugerido: [kbd]pma__table_uiprefs[/" "kbd]." -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Preferencias de interfaz de tablas" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7238,11 +7251,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Agregar DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7250,11 +7263,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Agregar DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7262,21 +7275,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Agregar DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Sentencias a hacer seguimiento" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7284,11 +7297,11 @@ msgstr "" "Deje en blanco para eliminar soporte de seguimiento de consultas SQL, valor " "sugerido: [kbd]pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabla de seguimiento de consultas SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7296,11 +7309,11 @@ msgstr "" "Si el mecanismo de seguimiento crea versiones para tablas y vistas " "automáticamente o no." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Crear versiones automáticamente" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7308,11 +7321,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabla de almacenamiento de preferencias de usuario" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7322,11 +7335,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Tabla de usuarios" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7336,11 +7349,11 @@ msgstr "" "personalizables; dejar cualquiera de ellas en blanco desactivará esta " "funcionalidad; valor sugerido: [kbd]pma__usergroups[/kbd]." -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Usar la tabla de groupos («groups»)" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7348,34 +7361,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Tabla de elementos de navegación ocultos" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Usuario para config auth" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Nombre del servidor, forma extendida" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Permitir que se muestren todas las filas" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7385,47 +7398,47 @@ 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Mostrar el formulario para cambio de contraseña" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Mostrar el formulario para crear una base de datos" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Mostrar marca temporal de creación" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Mostrar marca temporal de última actualización" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Mostrar marca temporal de última revisión" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7433,27 +7446,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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Mostrar tipo de campos" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Mostrar los campos de función" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Si mostrar ayudas o no." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Mostrar ayudas" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7461,63 +7474,63 @@ msgstr "" "Mostrar enlace a salida de [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Mostrar el enlace phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Mostrar información detallada acerca del servidor SQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Mostrar las consultas SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Mantener la caja de texto con la consulta" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Mostrar estadísticas" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Saltarse las tablas bloqueadas" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Mostrar advertencia en la página principal si se detecta Suhosin." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Advertencia Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7527,11 +7540,11 @@ msgstr "" "Estructura si algún nombre de columna en una tabla es una palabra reservada " "de MySQL." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "ADVERTENCIA de inicio de sesión cookie validez" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7540,12 +7553,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:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Columnas para las áreas de texto" # See translation string 813 -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7554,31 +7567,31 @@ msgstr "" "aumentado en áreas de texto para consultas SQL (x2) y en la venta de " "consultas (x1,25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Filas para áreas de texto" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Título predeterminado" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7590,27 +7603,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Directorio desde donde se cargarán los archivos" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 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:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Use búsquedas en la base de datos" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7619,28 +7632,28 @@ msgstr "" "opciones situadas más abajo, sin importar la casilla de la derecha." # see translation string 529 -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Habilitar la pestaña Desarrolladores en la configuración" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Buscar si existe una versión más reciente" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7652,11 +7665,11 @@ msgstr "" "el que está instalado phpMyAdmin no tiene acceso directo a internet. El " "formato es: \"servidor:puerto\"." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "URL de proxy" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7667,19 +7680,19 @@ msgstr "" "una autenticación básica. Actualmente no se posee compatibilidad con otros " "tipos de autenticación." -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Nombre de usuario del proxy" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "La contraseña para autenticar con el proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Contraseña del proxy" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7687,53 +7700,53 @@ 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Llave púlica para reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Llave privada para reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Enviar reportes de error" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -"Activar el modo de «Configuración Zero» que le permite definir las tablas del " -"almacenamiento de configuración de phpMyAdmin automáticamente." +"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:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Activar modo «Configuración Zero»" @@ -7755,44 +7768,44 @@ msgstr "Autenticación por HTTP" msgid "Signon authentication" msgstr "Autenticación por sesión" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Hoja de cálculo Open Document" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Rápido" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Personalizado" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opciones de exportación de la base de datos" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV para datos de MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Texto Open Document" @@ -8005,20 +8018,20 @@ msgstr "No se puede contar filas en un resultado sin búfer" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Sin contraseña" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Contraseña:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Debe volver a escribir:" @@ -8155,8 +8168,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar " "cadenas para formatear el tiempo. Además sucederán las siguientes " @@ -8726,8 +8739,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." @@ -9197,7 +9210,7 @@ msgstr "Finalizar sesión" msgid "phpMyAdmin documentation" msgstr "Documentación de phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Recargar el panel de navegación" @@ -9552,8 +9565,8 @@ msgid "" "No partial dependencies possible as the primary key ( %1$s ) has just one " "column." msgstr "" -"No existen dependencias parciales posibles debido a que la clave primaria («%1" -"$s») sólo contiene una columna." +"No existen dependencias parciales posibles debido a que la clave primaria " +"(«%1$s») sólo contiene una columna." #: libraries/normalization.lib.php:381 #, php-format @@ -9562,8 +9575,8 @@ msgid "" "create the following tables:" msgstr "" "Debido a las dependencias parciales anteriores, para poder convertir la " -"tabla original «%1$s» a segunda forma normal necesitamos crear las siguientes " -"tablas:" +"tabla original «%1$s» a segunda forma normal necesitamos crear las " +"siguientes tablas:" #: libraries/normalization.lib.php:417 #, php-format @@ -9896,8 +9909,8 @@ msgstr "Bienvenido a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La razón más probable es que usted no haya creado un archivo de " "configuración. Utilice el %1$sscript de configuración%2$s para crear uno." @@ -10132,7 +10145,7 @@ msgstr "Poner los nombres de campo en la primera fila:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Servidor:" @@ -10623,8 +10636,8 @@ msgstr "" "opción es para especificar un formato de fecha/hora diferente. La tercera " "opción determina si desea ver la fecha local o UTC (utilice las cadenas " "«local» o «utc»). Según esta configuración, el formato de la fecha tendrá un " -"valor diferente - para «local» mire la documentación de la función strftime() " -"de PHP y para «utc» la de la función gmdate()." +"valor diferente - para «local» mire la documentación de la función strftime" +"() de PHP y para «utc» la de la función gmdate()." #: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31 msgid "" @@ -11161,22 +11174,22 @@ msgstr "" "(my.cnf). Si no, agregue la siguiente línea en la sección [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Nombre de usuario:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nombre de usuario" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Contraseña" @@ -11204,10 +11217,10 @@ msgstr "ID del servidor" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Servidor" @@ -11221,38 +11234,38 @@ msgstr "" "visibles en esta lista." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Cualquier servidor" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Este Host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Cualquier usuario" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Use el campo de texto:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Usar la tabla Anfitrión (Host)" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11261,7 +11274,7 @@ msgstr "" "valores almacenados en la tabla Host en su lugar." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Debe volver a escribir" @@ -11997,7 +12010,7 @@ msgstr "Ninguno" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Grupo de usuario" @@ -12073,14 +12086,14 @@ msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener. #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" "Nota: Los nombres de los privilegios de MySQL están expresados en inglés." @@ -12090,7 +12103,7 @@ msgid "Administration" msgstr "Administración" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Privilegios globales" @@ -12099,7 +12112,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" @@ -12119,18 +12132,18 @@ msgstr "" "de privilegios." # It is talking about the user account not the act of logging in -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Información de la cuenta" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Use el campo de texto" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12138,126 +12151,126 @@ msgstr "" "Ya existe una cuenta con el mismo nombre de usuario pero posiblemente un " "nombre de servidor diferente." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "No cambiar la contraseña" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "La contraseña para %s se cambió exitosamente." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ha revocado los privilegios para %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Agregar usuario" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Base de datos para el usuario" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "Crear base de datos con el mismo nombre y otorgar todos los privilegios." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Otorgar todos los privilegios al nombre que contiene comodín (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Otorgar todos los privilegios para la base de datos \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuarios con acceso a \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Se agregó el usuario." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Usuario" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Conceder" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Privilegios insuficientes para ver los usuarios." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Usuario(s) no encontrado(s)." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "cualquiera" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "específico para la base de datos" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "comodín" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "específico para la tabla" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Editar los privilegios" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Revocar" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Editar groupo de usuario" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "…mantener el anterior." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "…borrar el viejo de las tablas de usuario." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "…revocar todos los privilegios activos del viejo y eliminarlo después." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12266,94 +12279,94 @@ msgstr "" "privilegios." # Login refers to the user account not the act of logging in -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Cambiar la información de la cuenta / Copiar el usuario" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Crear un nuevo usuario con los mismos privilegios y…" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilegios específicos para la columna" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Añadir privilegios a la o las base de datos siguientes:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Los comodines _ y % deben acompañarse del caracter de escape \\ para usarlos " "de manera literal." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Añadir privilegios a esta tabla:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Eliminar a los usuarios seleccionados" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocar todos los privilegios activos de los usuarios y borrarlos después." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" "Eliminar las bases de datos que tienen los mismos nombres que los usuarios." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "¡No se han seleccionado usuarios para eliminar!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Cargando los privilegios nuevamente" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Los usuarios seleccionados fueron borrados exitosamente." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Ha actualizado los privilegios para %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Borrando %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "¡El usuario %s ya existe!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Privilegios para %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nuevo" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Editar los privilegios:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12361,17 +12374,17 @@ msgstr "" "Nota: está intentando editar los privilegios del usuario con el que inició " "la sesión actual." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Vista global de usuarios" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de " "las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " @@ -12379,11 +12392,11 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "El usuario que seleccionó no se encontró en la tabla de privilegios." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." @@ -12531,8 +12544,9 @@ msgstr "" "El Monitorizador de phpMyAdmin puede asistir en la optimización de la " "configuración del servidor y rastrear consultas que toman mucho tiempo. Para " "esto último necesitará que «log_output» esté definido como 'TABLE' y tener " -"activado «slow_query_log» o «general_log». Note, sin embargo, que «general_log» " -"produce mucha información y aumenta la carga en el servidor hasta en un 15%." +"activado «slow_query_log» o «general_log». Note, sin embargo, que " +"«general_log» produce mucha información y aumenta la carga en el servidor " +"hasta en un 15%." #: libraries/server_status_monitor.lib.php:128 msgid "Using the monitor:" @@ -14206,19 +14220,19 @@ msgstr "Opción de índice:" msgid "Key block size:" msgstr "Tamaño del bloque dominante:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tipo de índice :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Analizador:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Comentario:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Arrastrar para reordenar" @@ -14958,8 +14972,8 @@ msgid "" "You might want to increase {long_query_time} or optimize the queries listed " "in the slow query log" msgstr "" -"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen en " -"el registro de consultas lentas" +"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen " +"en el registro de consultas lentas" #: libraries/advisory_rules.txt:68 #, php-format @@ -15026,8 +15040,8 @@ msgid "" "Enable slow query logging by setting {log_slow_queries} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" -"Active el registro de consultas lenta configurando «log_slow_queries» a 'ON'. " -"Esto ayudará a analizar consultas con mala performance." +"Active el registro de consultas lenta configurando «log_slow_queries» a " +"'ON'. Esto ayudará a analizar consultas con mala performance." #: libraries/advisory_rules.txt:89 msgid "log_slow_queries is set to 'OFF'" @@ -15184,8 +15198,8 @@ msgid "" msgstr "" "Se sabe que el caché de consultas puede mejorar la performance enormemente " "si está correctamente configurado. Actívelo definiendo «query_cache_size» a " -"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. Notar " -"que: si está utilizando memcached ignore esta recomendación." +"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. " +"Notar que: si está utilizando memcached ignore esta recomendación." #: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -15262,8 +15276,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "La tasa actual de memoria libre del caché de consultas respecto del tamaño " "total es %s%%. Debería ser mayor al 80%%" @@ -15421,8 +15435,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% de todas las ordenaciones causan tablas temporales, este valor debería " "de ser menor a 10%%." @@ -15485,8 +15499,8 @@ msgstr "" #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" -"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor a " -"1 por hora" +"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor " +"a 1 por hora" #: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" @@ -15594,7 +15608,8 @@ msgstr "" #: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" -msgstr "Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s" +msgstr "" +"Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s" #: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" @@ -15618,13 +15633,14 @@ msgid "" "mentioned in the beginning of an Article by the Pythian Group" msgstr "" -"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, " -"algunas tablas temporales son siempre escritas a disco independientemente " -"del valor de estas variables. Para eliminarlas deberá re-escribir las " -"consultas para evitar estas condiciones (en una tabla temporal: la presencia " -"de una columna «BLOB» o «TEXT», o la presencia de una columna mayor a 512 " -"bytes) como se menciona al comienzo del artículo de Pythian Group" +"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin " +"embargo, algunas tablas temporales son siempre escritas a disco " +"independientemente del valor de estas variables. Para eliminarlas deberá re-" +"escribir las consultas para evitar estas condiciones (en una tabla temporal: " +"la presencia de una columna «BLOB» o «TEXT», o la presencia de una columna " +"mayor a 512 bytes) como se menciona al comienzo del artículo de " +"Pythian Group" #: libraries/advisory_rules.txt:274 #, php-format @@ -15649,8 +15665,8 @@ msgid "" "mentioned in the MySQL Documentation" msgstr "" -"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, " -"algunas tablas temporales son siempre a disco permanentemente " +"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin " +"embargo, algunas tablas temporales son siempre a disco permanentemente " "independientemente del valor de estas variables. Para eliminarlas deberá re-" "escribir las consultas para evitar estas condiciones (en una tabla temporal: " "la presencia de una columna «BLOB» o «TEXT» o la presencia de una columna " @@ -15681,8 +15697,8 @@ msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." msgstr "" -"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M es " -"un buen comienzo." +"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M " +"es un buen comienzo." #: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" @@ -15857,7 +15873,8 @@ msgstr "" #: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a 0." +"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a " +"0." #: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" @@ -16018,8 +16035,8 @@ msgstr "" #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -"%s%% de todos los clientes son abandonados. Este valor debería ser menor a 2%" -"%" +"%s%% de todos los clientes son abandonados. Este valor debería ser menor a " +"2%%" #: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" diff --git a/po/et.po b/po/et.po index e98d31bc12..106c56e682 100644 --- a/po/et.po +++ b/po/et.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2015-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-19 08:57+0200\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian " -"\n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,7 +71,7 @@ msgstr "Tabeli kommentaarid:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "Veerg" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "Viitab aadressile" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "Primaarne" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "Ei" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -265,14 +265,14 @@ msgid "" msgstr "phpMyAdmini seadistuse salvestus on deaktiveeritud. %sVaata põhjust%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabel" @@ -285,7 +285,7 @@ msgid "Rows" msgstr "Ridu" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Suurus" @@ -374,9 +374,9 @@ msgstr "Olek" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -569,15 +569,15 @@ msgstr "Lisa geomeetria" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -610,11 +610,11 @@ msgstr "Puudulikud parameetrid" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Tõenäoliselt üritasid üles laadida liiga suurt faili. Palun loe %" -"sdokumentatsioonist%s, kuidas sellest piirangust vabaneda." +"Tõenäoliselt üritasid üles laadida liiga suurt faili. Palun loe " +"%sdokumentatsioonist%s, kuidas sellest piirangust vabaneda." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -655,8 +655,8 @@ msgid "" "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" "Importimisest andmeid vastu ei võetud. Faili nime kas ei saadetud või faili " -"maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata [doc@faq1-" -"16]KKK 1.16[/doc]." +"maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata " +"[doc@faq1-16]KKK 1.16[/doc]." #: import.php:554 msgid "" @@ -699,7 +699,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Tagasi" @@ -722,7 +722,7 @@ msgid "General Settings" msgstr "Üldised sätted" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Muuda parooli" @@ -795,7 +795,7 @@ msgstr "Versiooniinfo:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentatsioon" @@ -919,8 +919,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe %" -"sdokumentatsioonist%s." +"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe " +"%sdokumentatsioonist%s." #: js/messages.php:29 libraries/import.lib.php:125 sql.php:143 msgid "\"DROP DATABASE\" statements are disabled." @@ -1045,7 +1045,7 @@ msgstr "Lisa indeks" msgid "Edit Index" msgstr "Muuda indeksit" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Lisa indeksisse %s veerg(u)" @@ -1072,7 +1072,7 @@ msgstr "Pead lisama vähemalt ühe veeru." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "SQL eelvaade" @@ -1101,12 +1101,12 @@ msgstr "Hostinimi on tühi!" msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Paroolid ei kattu!" @@ -1307,7 +1307,7 @@ msgstr "Palun lisa seeriasse vähemalt üks muutuja!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1596,7 +1596,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1807,7 +1807,7 @@ msgstr "Näita päringu kasti" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2058,7 +2058,7 @@ msgstr "Andmepunkti sisu" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignoreeri" @@ -2236,7 +2236,7 @@ msgstr "Veeru nähtavuse muutmiseks
vajuta alla suunatud noolele." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Näita kõiki" @@ -2335,7 +2335,7 @@ msgstr "Peida paneel" msgid "Show hidden navigation tree items." msgstr "Kuva peidetud navigeerimispaneeli elemendid." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Lingi peapaneeli" @@ -2832,16 +2832,16 @@ msgid "Delete" msgstr "Kustuta" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2956,7 +2956,7 @@ msgid "During current session" msgstr "Jooksvas sessioonis" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3333,8 +3333,8 @@ msgstr "Sinu SQL päring teostati edukalt." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s." @@ -3370,6 +3370,7 @@ msgstr "Valitutega:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3385,12 +3386,12 @@ msgstr "Muuda" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3581,7 +3582,7 @@ msgstr "" "kustutatakse." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3596,11 +3597,11 @@ msgstr "Vaade" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3616,7 +3617,7 @@ msgstr "Struktuur" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3642,9 +3643,9 @@ msgstr "Lisa" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Õigused" @@ -3704,9 +3705,9 @@ msgid "Central columns" msgstr "Kesksed veerud" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Andmebaasid" @@ -3814,7 +3815,7 @@ msgid "Recent" msgstr "Hiljutised" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Lemmikute tabel" @@ -3885,7 +3886,7 @@ msgstr "Sorteerimine" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4244,20 +4245,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Väike ujukoma arv, lubatud väärtused on vahemikus -3.402823466E+38 kuni -" -"1.175494351E-38, 0, ja 1.175494351E-38 kuni 3.402823466E+38" +"Väike ujukoma arv, lubatud väärtused on vahemikus -3.402823466E+38 kuni " +"-1.175494351E-38, 0, ja 1.175494351E-38 kuni 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Topelttäpsusega ujukomaarv, lubatud väärtused on vahemikus -" -"1.7976931348623157E+308 luni -2.2250738585072014E-308, 0, ja " +"Topelttäpsusega ujukomaarv, lubatud väärtused on vahemikus " +"-1.7976931348623157E+308 luni -2.2250738585072014E-308, 0, ja " "2.2250738585072014E-308 kuni 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4302,9 +4303,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 03:14:07" -"\" UTC, säilitatakse sekundite hulgana alates ajastu algusest (\"1970-01-01 " -"00:00:00\" UTC)" +"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 " +"03:14:07\" UTC, säilitatakse sekundite hulgana alates ajastu algusest " +"(\"1970-01-01 00:00:00\" UTC)" #: libraries/Types.class.php:350 libraries/Types.class.php:788 #, php-format @@ -4544,7 +4545,7 @@ msgstr "Maksimaalne: %s%s" msgid "MySQL said: " msgstr "MySQL vastas: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Selgita SQL" @@ -4556,7 +4557,7 @@ msgstr "Jäta SQL selgitus vahele" msgid "Without PHP Code" msgstr "Ilma PHP koodita" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Loo PHP kood" @@ -4667,13 +4668,13 @@ msgstr "Kirjeldus" msgid "Use this value" msgstr "Kasuta seda väärtust" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5070,7 +5071,7 @@ msgid "Set value: %s" msgstr "Sea väärtus: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Taasta vaikimisi väärtus" @@ -5110,8 +5111,8 @@ msgid "" msgstr "" "See %svalik%s peaks olema keelatud, kuna see võimaldab ründajatel sooritada " "suurel hulgal logimisi kõikidesse MySQL serveritesse. Kui tunned, et sul on " -"seda vaja, siis kasuta kas %spiira meldimist MySQL serverisse%s või %" -"susaldusväärsete prokside nimekirja%s. Siiski ei pruugi IP-põhine kaitse " +"seda vaja, siis kasuta kas %spiira meldimist MySQL serverisse%s või " +"%susaldusväärsete prokside nimekirja%s. Siiski ei pruugi IP-põhine kaitse " "usaldatavate prokside loendiga olla usaldusväärne, kui sinu IP kuulub " "ISP'le, kellega on ühendatud koos sinuga tuhandeid kasutajaid." @@ -5164,8 +5165,8 @@ msgid "" "%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause " "random session invalidation (currently session.gc_maxlifetime is %d)." msgstr "" -"%sSisselogimise küpsise kehtivus%s on suurem, kui %ssession.gc_maxlifetime%" -"s. See võib põhjustada juhuslikke sessiooni vananemisi (session." +"%sSisselogimise küpsise kehtivus%s on suurem, kui %ssession.gc_maxlifetime" +"%s. See võib põhjustada juhuslikke sessiooni vananemisi (session." "gc_maxlifetime on hetkel %d)." #: libraries/config/ServerConfigChecks.class.php:413 @@ -5195,8 +5196,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - %" -"shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. " +"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - " +"%shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. " "Siiski ei pruugi IP-põhine kaitse olla usaldusväärne, kui sinu IP kuulub " "ISP'le, kellega on ühendatud koos sinuga tuhandeid kasutajaid." @@ -5491,23 +5492,35 @@ msgstr "Vaheleht, mis avatakse tabelisse sisenemisel." msgid "Default table tab" msgstr "Vaikimisi tabeli vaheleht" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Aseta tabeli ja veeru nimed alumise ja ülemise jutumärgi vahele" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Aseta tabeli ja veeru nimed alumise ja ülemise jutumärgi vahele" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Kas tabeli struktuuri tegevused peaks olema peidetud." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Peida tabeli struktuuri tegevused" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Näita servereid rippmenüü asemel nimekirjana." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Näita andmebaase nimekirjana" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5515,50 +5528,49 @@ msgstr "" "Keela tabeli hoolduse massilised tegevused (nt andmebaasi valitud tabelite " "optimeerimine või parandamine)." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Keela multi-tabeli hooldus" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" "Määra skripti lubatud töötamise aeg sekundites ([kbd]0[/kbd] - piiramatu)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Suurim teostamise aeg" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format -#| msgid "Add %s statement" msgid "Use %s statement" msgstr "Kasuta käsku %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Salvesta failina" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Faili märgitabel" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formaat" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Tihendamine" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5568,60 +5580,60 @@ msgstr "Tihendamine" msgid "Put columns names in the first row" msgstr "Aseta veergude nimed esimesse ritta" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Veergusid ümbritseb" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Veergusid lõpetab" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "NULL asendaja" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Eemalda veergudest CRLF märgid" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Veerud lõpetab" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Ridasid katkestab" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Exceli väljaanne" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Andmebaasi nime mall" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Serveri nime mall" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Tabeli nime mall" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5630,137 +5642,137 @@ msgstr "Tabeli nime mall" msgid "Dump table" msgstr "Loo tabeli tõmmis" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Lisa tabeli pealkiri" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Tabeli pealkiri" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Jätkatud tabeli pealkiri" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Nime võti" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-tüüp" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Seosed" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Ekspordi meetod" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Salvesta serverisse" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Kirjuta olemasolev(ad) fail(id) üle" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Jäta meelde faili nime mall" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Aseta tabeli ja veeru nimed alumise ja ülemise jutumärgi vahele" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL ühilduvuse meetod" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE valikud:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Loomise/Uuendamise/Kontrollimise kuupäevad" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Kasuta viivitatud lisamisi" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Keela võõrvõtme kontrollid" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Vaadete eksportimine tabelitena" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Lisa %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Kasuta 16-nendsüsteemi BINARY & BLOB väljadel" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Kasuta INSERT IGNORE lauseid" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Andmete lisamisel kasutatav süntaks" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Loodud päringu maksimaalne pikkus" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Ekspordi tüüp" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Lisa eksport ülekandesse" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Ekspordi aeg UTC's" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Sunni phpMyAdmini kasutamisel kasutama turvalist ühendust." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Sunni kasutama SSL ühendust" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5768,142 +5780,142 @@ msgstr "" "Vali sorteerimise järjekord võõrvõtme rippmenüü kasti üksustele. [kbd]content" "[/kbd] on viidatud andmed, [kbd]id[/kbd] on võtme väärtus." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Võõrvõtme rippmenüü järjekord" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Rippmenüüd kasutataks siis, kui selles on uusi üksusi." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Võõrvõtme piirang" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Sirvimisrežiim" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Kohanda sirvimise viisi." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Kohanda vaikimisi valikuid." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Arendaja" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "phpMyAdmini arendajate sätted." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Muutmise vaade" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Kohanda muutmise vaadet." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Ekspordi vaikimisi väärtused" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Muuda vaikimisi ekspordi valikuid." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funktsionaalsused" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Üldine" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Määra mõningaid enamasti kasutatavaid valikuid." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Impordi vaikimisi väärtused" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Kohanda vaikimisi tavalise importimise valikuid." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Impordi / ekspordi" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Määra impordi ja ekspordi kataloogid ja tihendamise valikud." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Andmebaaside näitamise valikud." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigeerimise paneel" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Muuda navigeerimise paneeli välimust." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Serverid" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Serverite näitamise valikud." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Tabelite näitamise valikud." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Peapaneel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Muud tuumsätted" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Sätted, mis ei sobi mujale." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Lehe pealkirjad" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5912,19 +5924,19 @@ msgstr "" "dokumentatsioonist[/doc], kuidas kasutada maagilisi sõne, mida saab kasutada " "eriliste väärtuste saamiseks." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Muuda päringuakna valikuid" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Turvalisus" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -5932,23 +5944,23 @@ msgstr "" "Palun pane tähele, et phpMyAdmin on lihtsalt kasutajaliides ja tema " "funktsionaalsus ei piira MySQL'i." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Peamised sätted" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autentimine" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Autentimise sätted." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Serveri seadistus" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -5956,15 +5968,15 @@ msgstr "" "Täpsem serveri seadistus, ära muuda neid valikuid, kui sa ei tea, mille " "jaoks need on." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Sisesta serveri ühenduse parameetrid." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Seadistuse salvestuskoht" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -5974,11 +5986,11 @@ msgstr "" "lisafunktsionaalsusele. Vaata dokumentatsioonist [doc@linked-tables]" "phpMyAdmin configuration storage[/doc]." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Muudatuste jälgimine" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -5986,109 +5998,109 @@ msgstr "" "Andmebaasis tehtud muudatuste jälgimine. Vajab phpMyAdmini seadistuse " "salvestust." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Muuda ekspordi valikuid" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Muuda impordi vaikimisi väärtusi" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Muuda navigeerimise paneeli" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Muuda peapaneeli" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL päringud" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL päringuaken" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Kohanda linke, mida näidatakse SQL päringu kastides." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL päringute sätted." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Käivitus" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Muuda esimest lehte." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Andmebaasi struktuur" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Vali need detailid, mida soovid näha andmebaasi struktuuris (tabelite " "nimekirjas)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Tabeli struktuur" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Tabeli struktuuri sätted (veergude nimekiri)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Vahelehed" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Vali, kuidas sa tahaksid, et vahelehed toimiksid." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Näita seoseskeemi" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Paberi suurus" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Tekstiväljad" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Muuda teksti lisamise väljasid." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Kohanda vaikimisi valikuid" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Hoiatused" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Keela mõned phpMyAdmini poolt näidatavad hoiatused." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6096,15 +6108,15 @@ msgstr "" "Luba [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] tihendamine importimistel " "ja eksportimistel." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv lisaparameetrid" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6112,11 +6124,11 @@ msgstr "" "Kui see on lubatud, siis phpMyAdmin jätkab multi-käsu päringute sooritamist " "ka sel juhul, kui üks päringutest ebaõnnestub." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignoreeri multi-käsu vigu" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6126,27 +6138,26 @@ msgstr "" "ajapiirangut. See on hea moodus importida suuri faile, kuid siiski võib see " "katkestada ülekanded." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Osaline importimine: luba katkestamine" -#: libraries/config/messages.inc.php:336 -#| msgid "Disable foreign key checks" +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "Keela importimise ajaks ajutiselt võõrvõtme kontrollid" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Ära katkesta INSERT vea puhul" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Asenda tabeli andmed faili omadega" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6154,69 +6165,69 @@ msgstr "" "Vaikimisi formaat. Võta teadmiseks, et see nimekiri sõltub asukohast " "(andmebaas, tabel) ja ainult siis, kui SQL on alati saadaval." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Imporditava faili formaat" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "kasuta LOCAL võtmesõna" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Veeru nimed esimeses reas" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Ära impordi tühje ridu" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Impordi valuutad ($5.00 -> 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Impordi protsendid sobiva kümnendarvuna (12.00% -> .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Päringute hulk, mida alguses vahele jätta." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Osaline importimine: jäta päringud vahele" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ära kasuta AUTO_INCREMENT null-väärtuste jaoks" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Liugurite algne asetus" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Mitu rida saab korraga lisada." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Lisatud ridade hulk" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Suurim hulk sümboleid, mida näidatakse mitte-arvulises veerus sirvimise " "vaates." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Piira veeru sümboleid" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6227,11 +6238,11 @@ msgstr "" "FALSE puhul on lihtne ära unustada välja logimast teistest serveritest, kui " "ühendatud on mitme serveriga." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Kustuta väljalogimisel kõik küpsised" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6239,11 +6250,11 @@ msgstr "" "Määra, kas [kbd]küpsisega[/kbd] autentimisel kutsutakse tagasi eelmine " "sisselogimine või mitte." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Kutsu kasutajanimi uuesti" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6255,69 +6266,69 @@ msgstr "" "seansi jaoks ja kustutatakse niipea, kui sulged veebilehitseja akna. Seda on " "soovitatav kasutada mitteusaldusväärses keskkonnas." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Sisselogimise küpsise säilitamine" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Määra, kui kaua (sekundites) sisselogimise küpsis kehtib." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Sisselogimise küpsise kehtivus" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Kahekordista LONGTEXT veergude tekstiala suurust." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Suurem tekstiala LONGTEXT jaoks" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "SQL päringu kuvamiseks kasutatav suurim sümbolite hulk." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Näidatava SQL'i maksimaalne pikkus" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Kasutajad ei saa määrata kõrgemat väärtust" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Andmebaaside nimekirjas näidatavate andmebaaside suurim hulk." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Suurim hulk andmebaase" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" "Igal lehel navigeerimispuu esimesel tasemel näidatavate elementide arv." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Maksimaalne elementide arv esimesel tasemel" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "Iga lehe navigeerimispuus näidatavate elementide arv." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Maksimaalne elementide arv harus" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6325,19 +6336,19 @@ msgstr "" "Näidatavate ridade hulk tulemuses. Kui tulemus sisaldab rohkem ridu, siis " "näidatakse \"Eelmine\" ja \"Järgmine\" linke." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Näidatavate ridade suurim hulk" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Tabeli nimekirjas näidatavate tabelite suurim hulk." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Suurim hulk tabeleid" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6345,66 +6356,66 @@ msgstr "" "Baitide hulk, mida skriptil on lubatud kasutada, nt [kbd]32M[/kbd] ([kbd]0[/" "kbd] - piiramatu)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Mälu piirang" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "Asendab navigeerimispaneelil andmebaasi puu valijaga" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Kuva andmebaaside navigeerimine puuna" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "Lingi peapaneeliga tõstes esile aktiivse andmebaasi või tabeli." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Näita logo navigeerimise paneelis." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Näita logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL, millele navigeerimise paneeli logo suunab." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Logo lingi URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" "Ava lingitud leht peaaknas ([kbd]main[/kbd]) või uues ([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Logo lingi sihtkoht" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Näita serveri valikut nevigeerimispaneeli ülaosas." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Näita serverite valikut" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Kiiravamisikooni sihtkoht" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Teise kiiravamisikooni sihtkoht" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6412,15 +6423,15 @@ msgstr "" "Minimaalne filtrikastis näidatavate elementide (tabelid, protseduurid ja " "sündmused) arv." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Minimaalne filtri kastis näidatavate elementide arv" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Andmebaasi filtri kastis näidatavate andmebaaside minimaalne hulk" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6428,95 +6439,95 @@ msgstr "" "Grupeeri navigeerimispuu elemendid (määratud allpool kirjeldatud eraldaja " "alusel)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Grupeeri puu elemendid" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Sõne, mis eraldab andmebaasid kolme erinevasse puu tasandisse." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Andmebaasipuu eraldaja" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Sõne, mis eraldab tabelid kolme erinevasse puu tasandisse." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Tabelipuu eraldaja" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maksimaalne tabelipuu kõrgus" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Tõsta kursori all olev server esile." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Luba esiletõstmine" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Kas lubada navigeerimispaneelil puu laiendamist või mitte." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Luba navigeerimispuu laiendamine" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Hiljuti kasutatud tabelite suurim hulk. Keelamiseks sisesta 0." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Lemmiktabelite suurim hulk. Keelamiseks sisesta 0." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Hiljuti kasutatud tabelid" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Need on lingid Muuda, Kopeeri ja Kustuta." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Kus näidata tabeli rea linke" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Algne järjekord" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Kasuta ainult ikoone, ainult teksti või mõlemat." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Tabeli navigeerimisriba" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip väljundi puhverdamine" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6524,19 +6535,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Vaikimisi sorteerimise järjekord" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Kasuta püsiühendusi MySQL andmebaasidesse." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Püsiühendused" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6545,11 +6556,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Puudulikud phpMyAdmini seadistuse salvestuse tabelid" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6557,11 +6568,11 @@ msgstr "" "Keela vaikimisi hoiatus, mis kuvatakse MySQL teegi ja serveri erinevuste " "tuvastamisel." -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Serveri/teegi erinevuse hoiatus" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6569,27 +6580,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "MySQL reserveeritud sõna hoiatus" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Kuidas kuvada menüü sakke" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Kuidas kuvada erinevate tegevuste linke" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Keela BLOB ja BINARY veergude muutmine." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Kaitse binaarseid veergusid" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6600,120 +6611,120 @@ msgstr "" "päringu ajaloo näitamiseks Javascripti funktsioone (ajalugu kaob akna " "sulgemisel)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Püsiv päringute ajalugu" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Mitu päringut ajaloos hoitakse." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Päringu ajaloo pikkus" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "Vali funktsioon, mida kasutatakse märgitabeli teisendamisel." -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Ümberkodeerimise mootor" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Jäta meelde tabeli sortimisalus" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "Vaikimisi sortimisrežiim primaarvõtmega tabelitele." -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Primaarvõtme vaimisi sortimisrežiim" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Korda päiseid" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Võrgustikmuutmine: tegevuse päästik" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Suhtestuskuva" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Kuvamise seaded" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Võrgustukmuutmine: salvesta kõik muudetud lahtrid" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Serveri kataloog, kuhu eksporditud failid salvestatakse." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Salvestamise kataloog" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Kui ei kasutata, siis jäta tühjaks." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Hosti autentimise järjekord" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Vaikimisi jäta tühjaks." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Hosti autentimise reeglid" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Luba paroolita sisselogimised" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Luba sisse logida 'root' kasutajana" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Seansi ajatsoon" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 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:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP ligipääsuala" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6722,19 +6733,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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey seadistuse fail" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Kasutatav autentimise meetod." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Autentimise tüüp" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6742,11 +6753,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Järjehoidja tabel" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6754,32 +6765,32 @@ msgstr "" "Jäta tühjaks, kui puuduvad kommentaarid/mime-tüübid, soovitatav: [kbd]" "pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Veeru teabe tabel" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Tihenda MySQL ühendus serveriga." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Tihenda ühendus" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Ühenduse tüüp" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Kontrollkasutaja parool" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6787,11 +6798,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Kontrollkasutaja" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6799,11 +6810,11 @@ msgstr "" "Seadistuse salvestuse säilitamise asendushost. Jäta tühjaks, kui soovid " "kasutada juba määratud hosti." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Kontrollhost" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6813,15 +6824,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Kontrollport" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Peida andmebaasid, mis kattuvad regulaaravaldisega (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6829,15 +6840,15 @@ msgstr "" "Rohkem infot aadressilt [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" "PMA bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Keela INFORMATION_SCHEMA kasutus" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Peida andmebaasid" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6845,23 +6856,23 @@ msgstr "" "Jäta tühjaks, kuid puudub SQL päringu ajaloo tugi, soovitatav: [kbd]" "pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL päringu ajaloo tabel" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Hostinimi, kus MySQL server töötab." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Serveri hostinimi" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Väljalogimise URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6869,15 +6880,15 @@ msgstr "" "Piirab andmebaasi salvestatud tabeli eelistuste hulka, vanimad sissekanded " "kustutatakse automaatselt." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Suurim hulk tabeli eelistusi, mida salvestada" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Tabel näitepõhiste päringute salvestamiseks" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6885,11 +6896,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:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Kesksete veergude tabel" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -6897,15 +6908,15 @@ msgstr "" "Jäta tühjaks, et keskseid veerge mitte kasutada, soovitatav: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Ürita ühendada ilma paroolita." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Ühenda ilma paroolita" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -6915,30 +6926,30 @@ msgstr "" "ette kurakaldkriipsu (\\). S.t kasuta [kbd]'my\\_db'[/kbd], aga mitte " "[kbd]'my_db'[/kbd]." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Näita ainult loendatud andmebaase" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Jäta tühjaks, kui ei kasuta 'config' autentimist." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "'config' autentimise parool" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF skeem: lehtede tabel" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -6948,22 +6959,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Andmebaasi nimi" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Serveri port" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -6971,11 +6982,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Hiljuti kasutatud tabel" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -6983,11 +6994,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Lemmikute tabel" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -6995,11 +7006,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Seose tabel" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7007,33 +7018,33 @@ msgstr "" "Vaata näiteks [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "autentimise tüüpe[/a]." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Sisselogimise seansi nimi" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Sisselogimise URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Serveri sokkel" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Luba SSL ühendus MySQL serverisse." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Kasuta SSL'i" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7041,11 +7052,11 @@ msgstr "" "Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: [kbd]pma__table_coords" "[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Disainer ja PDF skeem: tabeli koordinaadid" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7053,11 +7064,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Näita veergude tabelit" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7065,11 +7076,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "UI eelistuste tabel" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7077,42 +7088,42 @@ msgstr "" "Kas lisada lause DROP DATABASE IF EXISTS andmebaasi loomise logisse " "esimeseks." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Lisa DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Lisa DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Lisa DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Käsud, mida jälgida" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7120,22 +7131,22 @@ msgstr "" "Jäta tühjaks, kui puudub SQL päringu jälgimise tugi, soovitatav: [kbd]" "pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL päringu jälgimise tabel" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 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:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Loo versioonid automaatselt" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7143,11 +7154,11 @@ msgstr "" "Jäta tühjaks, kui kasutaja eelistusi andmebaasis ei hoita, soovitatav: [kbd]" "pma__userconfig[/kbd]." -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Kasutaja eelistusi säilitav tabel" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7157,11 +7168,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Kasutajate tabel" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7171,11 +7182,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Kasutajagruppide tabel" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7183,15 +7194,15 @@ msgstr "" "Jäta tühjaks, et keelata navigeerimiselementide peitmine ja kuvamine, " "soovitatav: [kbd]pma__userconfig[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Peidetud navigeerimiselementide tabel" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "'config' autentimise kasutaja" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7199,19 +7210,19 @@ msgstr "" "Selle serveri kasutajasõbralik kirjeldus. Kui jätad tühjaks, siis näidatakse " "selle asemel hostinime." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Selle serveri sõnaline nimi" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Luba näidata kõiki ridu" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7221,68 +7232,68 @@ msgstr "" "autentimist, sest parool on seadistusfailis raskesti kodeeritud. See ei " "piira sama käsu otse käivitamist." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Näita parooli muutmise vormi" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Näita andmebaasi loomise vormi" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Näita loomise ajatemplit" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Näita viimase uuendamise ajatemplit" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Näita viimase kontrolli ajatemplit" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Näita välja tüüpe" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Näita funktsiooni väljasid muutmisel/lisamisel." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Näita funktsiooni väljasid" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Kas näidata vihjet või mitte." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Näita vihjet" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7290,60 +7301,60 @@ msgstr "" "Näita linki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "väljundisse." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Näita phpinfo() linki" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Näita detailset MySQL serveri teavet" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Näita SQL päringuid" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Säilita päringu kast" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Näita statistikat" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Jäta lukustatud tabelid vahele" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Kuva avalehel hoiatus, kui tuvastatakse Suhosin." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin'i hoiatus" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7352,11 +7363,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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Sisselogimise küpsise kehtivuse hoiatus" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7364,11 +7375,11 @@ msgstr "" "Tekstiala suurus (veerud) muutmise vaates. See väärtus tõstetakse esile SQL " "päringu tekstialades (*2) ja päringu aknas (*1.25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Tekstiala veerud" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7376,31 +7387,31 @@ msgstr "" "Tekstiala suurus (read) muutmise vaates. See väärtus tõstetakse esile SQL " "päringu tekstialades (*2) ja päringu aknas (*1.25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Tekstiala read" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "Veebilehitseja akna pealkiri, kui valitud on andmebaas." -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Veebilehitseja akna pealkiri, kui valitud pole mitte midagi." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Vaikimisi pealkiri" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "Veebilehitseja akna pealkiri, kui valitud on server." -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "Veebilehitseja akna pealkiri, kuid valitud on tabel." -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7412,27 +7423,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Usaldusväärsete prokside nimekiri lubatud/keelatud IP'de jaoks" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Üleslaadimise kataloog" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Luba otsida tervest andmebaasist." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Kasuta andmebaasi otsingut" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7440,26 +7451,26 @@ msgstr "" "Kui keelatud, siis kasutajad ei saa kasutada ühtegi allolevat valikut, " "sõltumata paremal asuvast märkeruudust." -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Luba sätetes kujundaja vaheleht" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Kontrolli uusimat versiooni" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Lubab phpMyAdmini pealehel kontrollida viimast versiooni." -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7471,11 +7482,11 @@ msgstr "" "on paigaldatud, ei oma otseühendust Internetiga. Formaat on \"hostinimi:port" "\"." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Proksi aadress" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7485,19 +7496,19 @@ msgstr "" "Kui kasutajanimi on antud, kastutatakse lihtsa autentimise (Basic " "Authentication) meetodit. Muud meetodid ei ole hetkel toetatud." -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Proksi kasutajanimi" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Salasõna proksi serveris autentimiseks." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Proksi parool" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7505,35 +7516,35 @@ msgstr "" "Luba [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] tihendamine " "importimistel ja eksportimistel." -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "reCaptcha avalik võti" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "reCaptcha salajane võti" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "Vali vaikimisi tegevus vearaportite saatmisel." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Saada vearaport" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." @@ -7541,11 +7552,11 @@ msgstr "" "Päringud käivitatakse klahvi Enter vajutamisel (Ctrl+Enter asemel). " "Reavahetuseks kasuta kombinatsiooni Shift+Enter." -#: libraries/config/messages.inc.php:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "Enter käivitab päringud konsoolil" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7553,7 +7564,7 @@ msgstr "" "Luba Nullseadistuse režiim, mis lubab sul häälestada phpMyAdmin'i " "seadistuste salvestamise tabelid automaatselt." -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Luba Nullseadustuse režiim" @@ -7573,44 +7584,44 @@ msgstr "HTTP autentimine" msgid "Signon authentication" msgstr "Sisselogimise (signon) autentimine" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV kasutades LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "OpenDocument tabel" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Kiire" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Kohandatud" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Andmebaasi eksportimise valikud" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV MS Exceli jaoks" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument tekst" @@ -7690,7 +7701,6 @@ msgid "New page" msgstr "Uus leht" #: libraries/db_designer.lib.php:297 libraries/db_designer.lib.php:300 -#| msgid "Save page" msgid "Save page as" msgstr "Salvesta leht nimega" @@ -7817,20 +7827,20 @@ msgstr "Ei saa loendada ridu puhverdamata tulemustes" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Ilma paroolita" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Parool:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Tipi uuesti:" @@ -7968,8 +7978,8 @@ msgstr ", @TABLE@ saab tabeli nimeks" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Seda väärtust on tõlgendatud %1$sstrftime%2$s'ga ja seetõttu saad kasutada " "aja vormindamise sõne. Lisaks toimuvad järgnevad muudatused: %3$s. Ülejäänud " @@ -8133,12 +8143,10 @@ msgid "" msgstr "Jäta vahele nii palju SQL päringuid või ridu, alates esimesest:" #: libraries/display_import.lib.php:332 -#| msgid "Options" msgid "Other Options:" msgstr "Muud valikud:" #: libraries/display_import.lib.php:338 -#| msgid "Disable foreign key checks" msgid "Disable foreign key check" msgstr "Keela võõrvõtme kontroll" @@ -8514,8 +8522,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "PBXT kohta leiab dokumentatsiooni ja edasist teavet %sPrimeBase XT kodulehelt" "%s." @@ -8983,7 +8991,7 @@ msgstr "Logi välja" msgid "phpMyAdmin documentation" msgstr "phpMyAdmini dokumentatsioon" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Lae navigeerimise paneel uuesti" @@ -9670,11 +9678,11 @@ msgstr "Tere tulemast %s'i" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada %1" -"$spaigaldaja skripti%2$s." +"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada " +"%1$spaigaldaja skripti%2$s." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -9900,7 +9908,7 @@ msgstr "Aseta veergude nimed esimesse ritta:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Host:" @@ -10900,22 +10908,22 @@ msgstr "" "mitte, siis palun lisa [mysqld] sektsiooni järgnev rida:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Kasutajanimi:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Kasutajanimi" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Parool" @@ -10943,10 +10951,10 @@ msgstr "Serveri ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -10960,38 +10968,38 @@ msgstr "" "host=host_name valikuga." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Kõik hostid" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Kohalik" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "See host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Kõik kasutajad" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Kasuta tekstivälja:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Kasuta hosti tabelit" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11000,7 +11008,7 @@ msgstr "" "asemel kasutatakse hosti tabelis olevaid väärtusi." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Tipi uuesti" @@ -11729,7 +11737,7 @@ msgstr "Puudub" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Kasutaja grupp" @@ -11802,14 +11810,14 @@ msgstr "Piirab samaaegsete ühenduste hulka, mida kasutajal võib olla." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Tabelipõhised õigused" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Märkus: MySQL õigused on inglise keeles." @@ -11818,7 +11826,7 @@ msgid "Administration" msgstr "Administreerimine" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globaalsed õigused" @@ -11827,7 +11835,7 @@ msgid "Global" msgstr "Globaalne" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Andmebaasipõhised õigused" @@ -11844,18 +11852,18 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Lubab õiguste tabelit laadimata lisada kasutajaid ja õigusi." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Sisselogimise teave" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Kasuta tekstivälja" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -11863,244 +11871,244 @@ msgstr "" "Sama nimega kasutaja konto on on juba olemas, kuid ilmselt teise hosti " "nimega." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Ära muuda parooli" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s parool on edukalt vahetatud." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Tühistasid %s õigused." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Lisa kasutaja" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Andmebaas kasutajale" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Loo samanimeline andmebaas ja anna kõik õigused." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Anna kõik õigused metamärgiga nimele (kasutajanimi\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Anna kõik õigused \"%s\" andmebaasis." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Kasutajad, kellel on ligipääs \"%s\" andmebaasile" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Kasutaja on lisatud." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Kasutaja" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Õigused (GRANT)" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Puuduvad õigused kasutajate kuvamiseks." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Kasutajat ei leitud." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Kõik" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globaalne" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "andmebaasipõhine" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "metamärk" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "tabelipõhine" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Muuda õigusi" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Tühista" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Muuda kasutaja grupp" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… hoia eelmine alles." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… kustuta eelmine kasutajate tabelist." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… tühista eelmise kõik aktiivsed õigused ja seejärel kustuta see." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… kustuta eelmine kasutajate tabelist ja seejärel lae õigused uuesti." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Muuda sisselogimise teavet / Kopeeri kasutajat" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Loo uus kasutaja samade õigustega ja …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Veerupõhised õigused" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Lisa õiguseid järgneva(te)s andmebaasi(de)s:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Metamärkide % ja _ täheliseks kasutamiseks peaksid nende ette asetama " "kurakaldkriipsu ehk \\." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Lisa õigusi järgnevas tabelis:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Kustuta valitud kasutajad" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tühista kasutajatelt kõik aktiivsed õigused ning seejärel kustuta need " "kasutajad." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Kustuta kasutajatega samanimelised andmebaasid." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Kustutavaid kasutajaid pole valitud!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Õiguste uuesti laadimine" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Valitud kasutajad on edukalt kustutatud." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Uuendasid %s õigusi." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s kustutamine" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Õigused on edukalt uuesti laetud." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Kasutaja %s on juba olemas!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "%s õigused" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Uus" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Muuda õigusi:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" "Märkus: sa proovid muuta õiguseid kontol, mida kasutasid sisse logimiseks." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Kasutajate ülevaade" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Märkus: phpMyAdmin võtab kasutajate õigused otse MySQL'i õiguste tabelist. " "Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi " "muudetud. Sellisel juhul peaksid enne jätkamist %sõigused uuesti laadima%s." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat õiguste tabelist ei leitud." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Lisasid uue kasutaja." @@ -13866,19 +13874,19 @@ msgstr "Indeksi valik:" msgid "Key block size:" msgstr "Võtme ploki suurus:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indeksi tüüp:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Parser:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Kommentaar:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Järjekorra muutmiseks lohista" @@ -14897,11 +14905,11 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" -"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s%" -"%. See peaks olema üle 80%%" +"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s" +"%%. See peaks olema üle 80%%" #: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" @@ -15051,8 +15059,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% kõikidest sorteerimistest põhjustab ajutisi tabeleid. See väärtus peaks " "jääma alla 10%%." @@ -15629,8 +15637,8 @@ msgstr "" #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla 2%" -"%" +"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla " +"2%%" #: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" diff --git a/po/eu.po b/po/eu.po index e7aadf24b2..ca049cf4d1 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-03-31 14:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque \n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -72,7 +72,7 @@ msgstr "Taularen iruzkinak" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -96,7 +96,7 @@ msgstr "Zutabea" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -152,8 +152,8 @@ msgid "Links to" msgstr "Esteka" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -182,13 +182,13 @@ msgstr "Lehen mailakoa" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -211,13 +211,13 @@ msgstr "Ez" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -274,14 +274,14 @@ msgstr "" "Zergatia jakiteko egizu klik %shemen%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Taula" @@ -294,7 +294,7 @@ msgid "Rows" msgstr "Errenkadak" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Tamaina" @@ -394,9 +394,9 @@ msgstr "Egoera" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -599,15 +599,15 @@ msgstr "Gehitu geometria" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -642,14 +642,14 @@ msgstr "\"Insert\"ak osatu" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Agian fitxategi haundiegia igotzen saiatu zara. Mesedez begiratu %" -"sdocumentation%s tamaina mugak aldatzeko." +"Agian fitxategi haundiegia igotzen saiatu zara. Mesedez begiratu " +"%sdocumentation%s tamaina mugak aldatzeko." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -723,7 +723,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Itzuli" @@ -747,7 +747,7 @@ msgid "General Settings" msgstr "Erlazioen ezaaugarri orokorrak" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Pasahitza aldatu" @@ -837,7 +837,7 @@ msgstr "Saioa hasteko informazioa" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentazioa" @@ -1106,7 +1106,7 @@ msgstr "Indizea" msgid "Edit Index" msgstr "Editatu hurrengo lerroa" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1144,7 +1144,7 @@ msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1181,12 +1181,12 @@ msgstr "Zerbitzariaren izena hutsik dago!" msgid "The user name is empty!" msgstr "Erabiltzailearen izena hutsik dago!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Pasahitza hutsik dago!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" @@ -1400,7 +1400,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1705,7 +1705,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1949,7 +1949,7 @@ msgstr "SQL kontsulta" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2225,7 +2225,7 @@ msgstr "Edukinen taula" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ezikusi" @@ -2412,7 +2412,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Dena erakutsi" @@ -2523,7 +2523,7 @@ msgstr "Indizeak" msgid "Show hidden navigation tree items." msgstr "Sareta erakutsi" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy msgid "Link with main panel" @@ -3084,16 +3084,16 @@ msgid "Delete" msgstr "Ezabatu" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3227,7 +3227,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3664,11 +3664,11 @@ msgstr "Zure SQL-kontsula arrakastaz burutu da" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation%" -"s erreferentzia egin." +"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation" +"%s erreferentzia egin." #: libraries/DisplayResults.class.php:4560 #, fuzzy, php-format @@ -3705,6 +3705,7 @@ msgstr "Ikurdunak:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3720,12 +3721,12 @@ msgstr "Aldatu" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3922,7 +3923,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Zerbitzaria" @@ -3937,11 +3938,11 @@ msgstr "Ikusipegia" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3957,7 +3958,7 @@ msgstr "Egitura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3983,9 +3984,9 @@ msgstr "Txertatu" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Pribilegioak" @@ -4047,9 +4048,9 @@ msgid "Central columns" msgstr "Gehitu/ezabatu irizpide-zutabea" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Datu-baseak" @@ -4172,7 +4173,7 @@ msgid "Recent" msgstr "Reset egin" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4253,7 +4254,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4630,14 +4631,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4893,7 +4894,7 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL-ek zera dio: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL-a azaldu" @@ -4905,7 +4906,7 @@ msgstr "SQL-ren azalpena saltatu" msgid "Without PHP Code" msgstr "PHP Koderik gabe" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP kodea sortu" @@ -5023,13 +5024,13 @@ msgstr "Deskribapena" msgid "Use this value" msgstr "Erabili balio hau" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5458,7 +5459,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5817,78 +5818,90 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "\"Backquotes\" erabili taula eta eremuen izenekin " + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "\"Backquotes\" erabili taula eta eremuen izenekin " + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Taularen egituraren proposamena " -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Taularen egituraren proposamena " -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Taularen mantenua" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Sententziak" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Bidali" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formatoa" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Trinkotzea" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5900,75 +5913,75 @@ msgstr "Trinkotzea" msgid "Put columns names in the first row" msgstr "Eremuen izenak lehenengo errenkadan jarri" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Eremuak honekin mugatuta:" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Eremuak escaped by:" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "NULL ordezkatu honen ordez:" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Honetan bukatutako lerroak: " -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Honetan bukatutako lerroak: " -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel edizioa" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 #, fuzzy msgid "Database name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 #, fuzzy msgid "Server name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 #, fuzzy msgid "Table name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5979,639 +5992,639 @@ msgstr "Txantiloi-fitxategiaren izena" msgid "Dump table" msgstr "%s taula(k)" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Taularen epigrafea gehitu" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Taularen epigrafea" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 #, fuzzy msgid "Continued table caption" msgstr "Taularen epigrafea gehitu" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-mota" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Erlazioak" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Esportazio mota" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Gainean idatzi aurretik badiren fitxategiak" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 #, fuzzy msgid "Remember file name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "\"Backquotes\" erabili taula eta eremuen izenekin " -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Sortu/Eguneratu/Egiaztatu datak" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Taula berri bat sortu %s datu-basean" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s gehitu" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 #, fuzzy msgid "Use ignore inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "Esportazio mota" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 #, fuzzy msgid "Export time in UTC" msgstr "Esportazio mota" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy msgid "Customize default options." msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV datuak" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy msgid "Customize edit mode." msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 -#, fuzzy -msgid "Customize default export options." -msgstr "Datu-basea esportatzeko aukerak" - -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 -#: setup/frames/menu.inc.php:22 -msgid "Features" -msgstr "" - #: libraries/config/messages.inc.php:226 #, fuzzy +msgid "Customize default export options." +msgstr "Datu-basea esportatzeko aukerak" + +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 +#: setup/frames/menu.inc.php:22 +msgid "Features" +msgstr "" + +#: libraries/config/messages.inc.php:228 +#, fuzzy msgid "General" msgstr "Egilea:" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 #, fuzzy msgid "Import defaults" msgstr "Fitxategiak inportatu" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "Customize default common import options." msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy msgid "Customize appearance of the navigation panel." msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 #, fuzzy msgid "Servers" msgstr "Zerbitzaria" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Indexes" msgid "Main panel" msgstr "Indizeak" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Orri zenbakia:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentazioa" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Documentation" msgid "Authentication settings." msgstr "Dokumentazioa" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Customize export options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy msgid "Customize navigation panel" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy msgid "Customize main panel" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "Egoera" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy msgid "Customize startup page." msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "Datu-baseak" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "Datu-baseak" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "Taula" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Erlazio-eskema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Paperaren tamaina" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Testu-eremua erabili" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy msgid "Customize text input fields." msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Customize default options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Taularen datuak fitxategiarekin ordezkatu" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Eremuen izenak lehenengo errenkadan jarri" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6619,1111 +6632,1111 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy msgid "Maximum items on first level" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Memory limit" msgstr "Baliabideen mugak" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Sareta erakutsi" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy msgid "Show logo in navigation panel." msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Taularen epigrafea" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Taula aztertu" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Taularen \"Order By\" aldatu" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Taularen epigrafea" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Taula berrizendatu izen honetara: " -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational schema" msgid "Relational display" msgstr "Erlazio-eskema" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Saioaren balioa" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Documentation" msgid "Authentication method to use." msgstr "Dokumentazioa" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 #, fuzzy msgid "Connection type" msgstr "Konexioak" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Edozein ostalari" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Edozein ostalari" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "Datu-baserik ez" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "Pasahitza ez aldatu" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Datu-basea" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Taula aztertu" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Aldagaiak" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Taula konpondu" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, fuzzy msgid "Enable SSL for connection to MySQL server." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Sententziak" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy msgid "Automatically create versions" msgstr "Zerbitzariaren bertsioa" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Taulak erabili" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Host taula erabili" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "PHP informazioa erakutsi" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy msgid "Show field types" msgstr "Taulak erakutsi" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Sareta erakutsi" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "Kontsulta osoak erakutsi" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 #, fuzzy msgid "Show statistics" msgstr "Errenkadaren estatistikak" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Lehenetsia" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7731,52 +7744,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7784,85 +7797,85 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Erabiltzaile-izena:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Pasahitza" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Enable Zero Configuration mode" @@ -7884,46 +7897,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "Dokumentazioa" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excel datuentzako CSV" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -8172,20 +8185,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Pasahitzik ez" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Pasahitza:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8349,8 +8362,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8870,8 +8883,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9359,7 +9372,7 @@ msgstr "Saioa bukatu" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentazioa" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "Datu-basea esportatzeko aukerak" @@ -10047,8 +10060,8 @@ msgstr "Ongietorriak %s(e)ra" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10310,7 +10323,7 @@ msgstr "Eremuen izenak lehenengo errenkadan jarri" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11339,7 +11352,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11347,16 +11360,16 @@ msgstr "Erabiltzaile-izena" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Erabiltzaile-izena" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Pasahitza" @@ -11386,10 +11399,10 @@ msgstr "Zerbitzaria" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Zerbitzaria" @@ -11401,47 +11414,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Edozein ostalari" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Host hau" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Edozein erabiltzaile" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Testu-eremua erabili" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Host taula erabili" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Berridatzi" @@ -12244,7 +12257,7 @@ msgstr "Batez" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12318,14 +12331,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12336,7 +12349,7 @@ msgid "Administration" msgstr "Kudeaketa" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Pribilegio orokorrak" @@ -12347,7 +12360,7 @@ msgid "Global" msgstr "orokorra" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" @@ -12366,148 +12379,148 @@ msgstr "" "Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula " "berkargatu gabe." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Saioa hasteko informazioa" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Testu-eremua erabili" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Pasahitza ez aldatu" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Gehitu erabiltzailea" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" datu-basearen pribilegioak egiaztatu." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"-(e)ra sarbidea duten erabiltzaileak" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy msgid "User has been added." msgstr "%s eremua ezabatu da" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Erabiltzailea" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Baimendu" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ez da erabiltzailerik aurkitu." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Edozein" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "orokorra" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "komodina" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Datubasearentzat espezifikoa" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Editatu Pribilegioak" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Ezeztatu" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Editatu hurrengo lerroa" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… mantendu aurrekoa." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… zaharra ezabatu erabiltzaileen tauletatik." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12515,116 +12528,116 @@ msgstr "" "… zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Pribilegioak gehitu datu-base honetan" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Pribilegioak gehitu taula honetan" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Hautatutako erabiltzaileak baztertu" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Pribilegioak berkargatzen" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "%s-aren pribilegioak eguneratu dituzu." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s ezabatzen" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Pribilegioak" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Editatu Pribilegioak" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Erabiltzailearen info orokorra" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren " "pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz " @@ -12632,11 +12645,11 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." @@ -14424,22 +14437,22 @@ msgstr "Indizearen izena :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indize mota :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Erabiltzailea" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy msgid "Comment:" msgstr "Iruzkinak" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15475,8 +15488,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15604,8 +15617,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/fa.po b/po/fa.po index e622249031..8bfc7fa18b 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-12-18 09:39+0200\n" "Last-Translator: HM \n" "Language-Team: Persian \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2-dev\n" @@ -69,7 +69,7 @@ msgstr "توضيحات جدول:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "ستون" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "پيوند به" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "اصلي" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "خير" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -269,14 +269,14 @@ msgstr "" "دليل آن %shere%s را بزنيد." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "جدول" @@ -289,7 +289,7 @@ msgid "Rows" msgstr "سطرها" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "اندازه" @@ -383,9 +383,9 @@ msgstr "وضعیت" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -582,15 +582,15 @@ msgstr "اضافه کردن هندسه" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -631,8 +631,8 @@ msgstr "تمام وروديها" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "احتمالاً شما سعی کرده اید یک فایل حجیم را آپلود کنید. لطفاً برای یافتن راه حلی " "برای این محدودیت به %sdocumentation%s مراجعه کنید." @@ -722,7 +722,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "بازگشت" @@ -746,7 +746,7 @@ msgid "General Settings" msgstr "تنظیمات عمومی" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "تغيير کلمه ی عبور" @@ -822,7 +822,7 @@ msgstr "اطلاعات نسخه:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "مستندات" @@ -1095,7 +1095,7 @@ msgstr "افزودن index" msgid "Edit Index" msgstr "ویرایش کردن ایندکس" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" @@ -1133,7 +1133,7 @@ msgstr "شما حذاقل بايد يك ستون را براي نمايش انت #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1170,12 +1170,12 @@ msgstr "نام ميزبان خالي است!" msgid "The user name is empty!" msgstr "نام كاربر خالي است!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "اسم رمز خالي است!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" @@ -1379,7 +1379,7 @@ msgstr "لطفا حداقل یک مقدار به این سری اضافه نما #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1667,7 +1667,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1890,7 +1890,7 @@ msgstr "نمایش جعبه پرس و جو" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2163,7 +2163,7 @@ msgstr "محتوای داده ها" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "در نظر نگرفتن" @@ -2367,7 +2367,7 @@ msgstr "با کلیک بر روی منوی کشویی
فلش به ضام #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "نمايش همه" @@ -2485,7 +2485,7 @@ msgstr "مخفی کردن فهرست ها" msgid "Show hidden navigation tree items." msgstr "Show grid" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize text input fields" @@ -2999,16 +2999,16 @@ msgid "Delete" msgstr "حذف" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3145,7 +3145,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3570,8 +3570,8 @@ msgstr "اجرای فرایند شما با موفقيت اجرا گرديد" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "در این نما حداقل این تعداد از سطرها موجود می باشد . لطفا به %sنوشتار%s " "مراجعه کنید ." @@ -3609,6 +3609,7 @@ msgstr "موارد انتخاب‌ شده :" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3624,12 +3625,12 @@ msgstr "تغيير" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3828,7 +3829,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "سرور" @@ -3843,11 +3844,11 @@ msgstr "نمایه" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3863,7 +3864,7 @@ msgstr "ساختار" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3889,9 +3890,9 @@ msgstr "درج" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "امتيازات" @@ -3953,9 +3954,9 @@ msgid "Central columns" msgstr "اضافه يا حذف ستونها" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "پايگاههاي داده" @@ -4079,7 +4080,7 @@ msgid "Recent" msgstr "پاک سازی" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy msgid "Favorite tables" msgstr "متغییر" @@ -4157,7 +4158,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4541,14 +4542,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4803,7 +4804,7 @@ msgstr "حداکثر: %s %s" msgid "MySQL said: " msgstr "پيغام MySQL : " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "شرح دادن SQL" @@ -4815,7 +4816,7 @@ msgstr "رد شدن از توضیحات SQL" msgid "Without PHP Code" msgstr "بدون كد PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "ساخت كد PHP" @@ -4936,13 +4937,13 @@ msgstr "توضیحات" msgid "Use this value" msgstr "این مقدار را استفاده کنید" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5363,7 +5364,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5733,75 +5734,87 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "قراردادن نام جدولها و ستونها بين علامت نقل‌قول" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "قراردادن نام جدولها و ستونها بين علامت نقل‌قول" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "پيشنهاد ساختار جدول" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "پيشنهاد ساختار جدول" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "نگهداشت چندتایی جدول را غیر فعال کنید" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "شرج" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "ذخيره به صورت پرونده" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "مجموعه كاراكترهاي پرونده" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "قالب" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "فشرده‌سازي" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5811,68 +5824,68 @@ msgstr "فشرده‌سازي" msgid "Put columns names in the first row" msgstr "قراردادن نام ستونها در اولين سطر" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "ستونهاي درميان‌گرفته با" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "ستونهاي جداشده با" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "ستون های از بین رفته به وسیله" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "خطوط منتهي به" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5881,489 +5894,489 @@ msgstr "" msgid "Dump table" msgstr "بیرون کشیدن جدول" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "رابطه ها" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "روش صدور" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "مقدار افزایشی خودکار اضافه شود" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "قراردادن نام جدولها و ستونها بين علامت نقل‌قول" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "از ورودی با تاخیر استفاده نمایید" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export views as tables" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "افزودن %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "از ورودی های درنظرگرفته نشده استفاده نمایید" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "نوع صدور" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize text input fields" msgid "Customize default options." msgstr "سفارشی کردن فیلدهای ورودی متن" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "داده‌هاي CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize text input fields" msgid "Customize edit mode." msgstr "سفارشی کردن فیلدهای ورودی متن" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize text input fields" msgid "Customize default export options." msgstr "سفارشی کردن فیلدهای ورودی متن" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "عمومی" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "گزینه های نمایش پایگاه داده" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize text input fields" msgid "Customize appearance of the navigation panel." msgstr "سفارشی کردن فیلدهای ورودی متن" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "سرور" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Databases display options" msgid "Servers display options." msgstr "گزینه های نمایش پایگاه داده" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Databases display options" msgid "Tables display options." msgstr "گزینه های نمایش پایگاه داده" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Hide indexes" msgid "Main panel" msgstr "مخفی کردن فهرست ها" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "عنوان صفحه" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "ورود" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication" msgid "Authentication settings." msgstr "ورود" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Server connection collation" msgid "Enter server connection parameters." msgstr "تلفیق اتصال سرور" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize text input fields" msgid "Customize navigation panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize text input fields" msgid "Customize main panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "پرس و جوي SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "جعبه پرس و جوي SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "تنظیمات پرس و جوي SQL" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize text input fields" msgid "Customize startup page." msgstr "سفارشی کردن فیلدهای ورودی متن" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "پايگاههاي داده" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "پايگاههاي داده" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "جدول" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "نمايش الگوي PDF" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "فیلد های متنی" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "سفارشی کردن فیلدهای ورودی متن" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "هشدارها" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "غیر فعال کردن برخی از هشدارهای نشان داده شده توسط phpMyAdmin" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6375,15 +6388,15 @@ msgstr "" "فعال کردن فشرده سازی [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] برای " "عملیات خروجی و ورودی" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "پارامترهای اضافی برای iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6395,37 +6408,37 @@ msgstr "" "اگر فعال باشد ,phpMyAdmin در صورتی که محاسبه ای با خطا مواجه شد به دیگر " "محاسبات ادامه خواهد داد" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "نادیده گرفتن اشتباهات بیانی متعدد" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "ورودی جزئی : اجازه توقف دادن" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "آیا درج خطا بینتیجه بوده" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6437,90 +6450,90 @@ msgstr "" "فرمت پیش فرض;اگاه باشید که این لیست وابسته به محل(پایگاه داده,جدول) و فقط " "همیشه sql مورد دسترسی میباشد" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "فرمت فایل های مهم" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "استفاده از کلید واژه های محلی" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "نام ستونها در اولين سطر" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "ردیف خالی وارد کنید" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "ارز واردات ($ 5.00 به 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "درصد واردات به عنوان رقم اعشار مناسب (12.00٪ به 0.12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "شماره نمایش داده شد از شروع به جست و خیز" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6528,884 +6541,884 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hint" msgid "Show databases navigation as tree" msgstr "Show grid" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Customize text input fields" msgid "Show logo in navigation panel." msgstr "سفارشی کردن فیلدهای ورودی متن" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy msgid "Enable navigation tree expansion" msgstr "توضيحات جدول" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "جدول های استفاده شده اخیر" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "نوبت خنثی" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy msgid "Table navigation bar" msgstr "توضيحات جدول" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 #, fuzzy #| msgid "Allow to display all the rows" msgid "How to display the menu tabs" msgstr "اجازه دهید همه ردیف ها نمایش داده شوند" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "به یاد ماندن نوع جدول" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key default sort order" msgstr "يك كليد اصلي در %s اضافه شد" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "تکرار عنوان ها" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relations" msgid "Relational display" msgstr "رابطه ها" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Databases display options" msgid "For display Options" msgstr "گزینه های نمایش پایگاه داده" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 #, fuzzy #| msgid "Save all edited cells at once" msgid "Grid editing: save all edited cells at once" msgstr "ذخیره سریع تمام سلول های ویرایش شده" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "ذخیره ی پوشه" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "در صورت استفاده نکردن خالی بگذارید" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank for defaults." msgstr "در صورت استفاده نکردن خالی بگذارید" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication" msgid "Authentication method to use." msgstr "ورود" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Compress connection to MySQL server." msgstr "ورود به MySQL server ناموفق بود" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "کنترل هاست" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control host" msgid "Control port" msgstr "کنترل هاست" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "مخفی کردن پایگاه داده ها" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "جدول تاریخ دستورات اس کیو ال" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "نام میزبان سرور" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "خروج URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "اضافه يا حذف ستونها" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "سعی کردن برای اتصال بدون رمز عبور" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "اتصال بدون رمز عبور" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "نام پايگاه داده" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "پورت سرور" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "جدول هایی که به تازگی استفاده شده" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy msgid "Favorites table" msgstr "متغییر" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "ارتباط جدول" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "نمایش جدول ستون ها" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "جملاتی که باید ردگیری شوند" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "به صورت خودکار نسخه ایجاد شود" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "بكارگيري جدولها" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7413,196 +7426,196 @@ msgstr "" "توضیحات کاربر پسند از این سرور . این فیلد را خالی بگذارید تا نام میزبان به " "جای آن قرار بگیرد ." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "اجازه دهید همه ردیف ها نمایش داده شوند" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "نمايش اطلاعات PHP" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "نمايش جدولها" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Show grid" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 msgid "" +"Defines whether SQL queries generated by phpMyAdmin should be displayed." +msgstr "" + +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" +msgstr "" + +#: libraries/config/messages.inc.php:764 +msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "پرس و جوي SQL" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "آمار سطرها" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "اضافه يا حذف ستونها" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "پيش‌فرض" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7610,52 +7623,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7663,34 +7676,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "نام كاربر" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "اسم رمز" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -7702,53 +7715,53 @@ msgstr "" "فعال کردن فشرده سازی [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] برای " "عملیات خروجی و ورودی" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "پورت سرور" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Failed to read configuration file" msgid "Enable Zero Configuration mode" @@ -7770,46 +7783,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Spreadsheet" msgstr "مستندات باز" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "آمار پايگاههاي داده" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV براي داده‌هاي MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Text" @@ -8044,20 +8057,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "بدون کلمه ی عبور" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "اسم رمز:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8204,8 +8217,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8725,8 +8738,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9212,7 +9225,7 @@ msgstr "خروج" msgid "phpMyAdmin documentation" msgstr "مستندات phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Customize text input fields" msgid "Reload navigation panel" @@ -9918,8 +9931,8 @@ msgstr "به %s خوش‌آمديد" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "احتمالا فایل تنظیمات ایجاد نکرده اید.می توانید از %1$ssetup script%2$s برای " "ایجاد آن استفاده نمایید." @@ -10175,7 +10188,7 @@ msgstr "قراردادن نام ستونها در اولين سطر" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11151,7 +11164,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11159,16 +11172,16 @@ msgstr "نام كاربر" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "نام كاربر" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "اسم رمز" @@ -11198,10 +11211,10 @@ msgstr "سرور" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "ميزبان" @@ -11213,47 +11226,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "همه ميزبانها" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "محلی" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "همه كاربران" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "فیلد های متنی" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "دوباره نوشتن" @@ -12019,7 +12032,7 @@ msgstr "خير" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12085,14 +12098,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12103,7 +12116,7 @@ msgid "Administration" msgstr "مدیریت" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -12112,7 +12125,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -12130,267 +12143,267 @@ msgid "" msgstr "" "دادن اجازه برای ایجاد کاربران و اعطای امتیازات بدون بارگذاری اطلاعات جداول." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "اطلاعات ورود" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "عدم تغيير اسم رمز" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "شما امتيازات %s را ابطال كرديد." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "افزودن کاربر" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "نمای %s حذف گرديد." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "كاربر" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 #, fuzzy msgid "Grant" msgstr "چاپ" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "هيچ كاربري وچود ندارد." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "همه" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "ويرايش امتيازات" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "ابطال" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Check privileges for database \"%s\"." msgid "Add privileges on the following database(s):" msgstr "تنظیمات دسترسی به پایگاه داده \"%s\" را بررسی کنید." -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "امتيازات %s به هنگام گرديد." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "در حال پاک کردن %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "امتيازات" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "جدید" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "ويرايش امتيازات" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." @@ -14168,23 +14181,23 @@ msgstr "اسم فهرست :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "نوع فهرست :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "كاربر:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "توضيحات" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15219,8 +15232,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15348,8 +15361,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/fi.po b/po/fi.po index 3e9d1a31fc..c1b8925f20 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-01-18 15:39+0200\n" "Last-Translator: Juha \n" "Language-Team: Finnish \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2-dev\n" @@ -67,7 +67,7 @@ msgstr "Taulun kommentit:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Sarake" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Viittaa sarakkeeseen" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Perusavain" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Ei" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "hyvä ja katso %slisätietoja%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Taulu" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Kpl rivejä" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Koko" @@ -371,9 +371,9 @@ msgstr "Tila" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -568,15 +568,15 @@ msgstr "Lisää geometria" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -609,11 +609,11 @@ msgstr "Vaillinaiset parametrit" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Yritit ehkä lähettää palvelimelle liian suurta tiedostoa. Katso %sohjeista%" -"s, kuinka tämän rajoituksen voi poistaa." +"Yritit ehkä lähettää palvelimelle liian suurta tiedostoa. Katso %sohjeista" +"%s, kuinka tämän rajoituksen voi poistaa." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -697,7 +697,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Takaisin" @@ -721,7 +721,7 @@ msgid "General Settings" msgstr "Yleiset asetukset" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Vaihda salasana" @@ -796,7 +796,7 @@ msgstr "Versiotiedot:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Ohjeet" @@ -908,8 +908,8 @@ msgid "" "extended features have been deactivated. %sFind out why%s. " msgstr "" "phpMyAdmin asetusmuisti ei ole kokonaan konfiguroitu, linkitettyihin " -"tauluihin liittyvät lisäominaisuudet eivät ole käytössä. Katso miksi %" -"slisätietoja%s. " +"tauluihin liittyvät lisäominaisuudet eivät ole käytössä. Katso miksi " +"%slisätietoja%s. " #: index.php:549 msgid "" @@ -1063,7 +1063,7 @@ msgstr "Lisää indeksi" msgid "Edit Index" msgstr "Muokkaa indeksiä" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Lisää indeksiin %s kolumni(a)" @@ -1090,7 +1090,7 @@ msgstr "Sinun tulee lisätä vähintään yksi sarake." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Esikatsele SQL." @@ -1119,12 +1119,12 @@ msgstr "Palvelimen nimi puuttuu!" msgid "The user name is empty!" msgstr "Käyttäjän nimi puuttuu!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Salasana puuttuu!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" @@ -1325,7 +1325,7 @@ msgstr "Lisää sarjaan vähintään yksi muuttuja!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1617,7 +1617,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1829,7 +1829,7 @@ msgstr "Näytä kyselykenttä" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2080,7 +2080,7 @@ msgstr "Tietopisteen sisältö" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Älä huomioi" @@ -2258,7 +2258,7 @@ msgstr "Muuta sarakkeen näkyvyyttä
napsauttamalla pudotusvalikon nuolta." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Näytä kaikki" @@ -2274,8 +2274,8 @@ msgstr "" #: js/messages.php:446 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -"Ole hyvä ja anna pätevä heksadesimaalinen merkkijono. Pätevät merkit ovat 0-" -"9, A-F." +"Ole hyvä ja anna pätevä heksadesimaalinen merkkijono. Pätevät merkit ovat " +"0-9, A-F." #: js/messages.php:447 msgid "" @@ -2362,7 +2362,7 @@ msgstr "Piilota paneeli" msgid "Show hidden navigation tree items." msgstr "Näytä piilotetut navigointipuun kohteet." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Linkitä pääpaneelin kanssa" @@ -2796,8 +2796,8 @@ msgstr "Merkkijonon muotoilu epäonnistui '%s' säännöllä." msgid "" "Invalid rule declaration on line %1$s, expected line %2$s of previous rule." msgstr "" -"Epäkelpo säännön määrittely rivillä %1$s, odotti edellisen säännön riviä %2" -"$s." +"Epäkelpo säännön määrittely rivillä %1$s, odotti edellisen säännön riviä " +"%2$s." #: libraries/Advisor.class.php:415 #, php-format @@ -2873,16 +2873,16 @@ msgid "Delete" msgstr "Poista" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2999,7 +2999,7 @@ msgid "During current session" msgstr "Nykyisen istunnon aikana" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3376,11 +3376,11 @@ msgstr "SQL-kyselysi on suoritettu onnistuneesti." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %" -"sohjeista%s." +"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " +"%sohjeista%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3414,6 +3414,7 @@ msgstr "Valitut:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3429,12 +3430,12 @@ msgstr "Muokkaa" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3628,7 +3629,7 @@ msgstr "" "poistaa." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Palvelin" @@ -3643,11 +3644,11 @@ msgstr "Näkymä" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3663,7 +3664,7 @@ msgstr "Rakenne" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3689,9 +3690,9 @@ msgstr "Lisää rivi" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Käyttöoikeudet" @@ -3751,9 +3752,9 @@ msgid "Central columns" msgstr "Keskisarakkeet" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Tietokannat" @@ -3861,7 +3862,7 @@ msgid "Recent" msgstr "Äskettäinen" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Suosikkitaulut" @@ -3932,7 +3933,7 @@ msgstr "Lajittelu" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4298,20 +4299,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - -" -"1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38" +"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - " +"-1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä -" -"1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja " +"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä " +"-1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja " "2.2250738585072014E-308 - 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4598,7 +4599,7 @@ msgstr "Enimmäiskoko: %s%s" msgid "MySQL said: " msgstr "MySQL ilmoittaa: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Selitä SQL-kysely" @@ -4610,7 +4611,7 @@ msgstr "Älä selitä SQL-kyselyä" msgid "Without PHP Code" msgstr "Ilman PHP-koodia" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Luo PHP-koodi" @@ -4725,13 +4726,13 @@ msgstr "Kuvaus" msgid "Use this value" msgstr "Käytä tätä arvoa" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5125,7 +5126,7 @@ msgid "Set value: %s" msgstr "Aseta arvo: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Palauta oletusarvo" @@ -5631,25 +5632,37 @@ msgstr "Taulua syötettäessä näytettävä välilehti" msgid "Default table tab" msgstr "Oletusarvoinen tauluvälilehti" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Laita taulujen ja sarakkeiden nimet lainausmerkkeihin" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Laita taulujen ja sarakkeiden nimet lainausmerkkeihin" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Whether the table structure actions should be hidden" msgid "Whether the table structure actions should be hidden." msgstr "Taulukon rakenteiden toiminnot pitäisi olla piilossa" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Esitä taulun rakennetoimet" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Näytä palvelimet luettelona eikä pudotusvalikkona." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Näytä palvelimet luettelona" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5657,11 +5670,11 @@ msgstr "" "Estä taulun massahallintatoiminnot, esimerkiksi optionti tai korjaus " "tietokannan valituille tauluille." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Estä monen taulun hallinta" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5669,39 +5682,39 @@ msgstr "" "Määritä suurin sallittu skriptin suorittamiseen käytettävä sekuntimäärä " "([kbd]0[/kbd], jos ei rajoitusta)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Suorituksen enimmäiskesto" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Lisää %s lauseke" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Tallenna tiedostoon" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Tiedoston merkistö" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Muoto" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Pakkaus" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5711,60 +5724,60 @@ msgstr "Pakkaus" msgid "Put columns names in the first row" msgstr "Aseta sarakkeiden nimet ensimmäiselle riville" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Sarakkeet mukana" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Sarakkeet unohtui" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Korvaa NULL merkki" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Poista CRLF-merkit sarakkeista" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Sarakkeet päätetään" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Rivit päätetään" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel-muokkaus" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Tietokantanimen pohja" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Palvelinnimen pohja" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Taulunimen pohja" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5773,141 +5786,141 @@ msgstr "Taulunimen pohja" msgid "Dump table" msgstr "Luo tauluvedos" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Sisällytä taulun otsikko" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Taulun otsikko" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Jatkettu taulun otsikko" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Tunniste" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-tyyppi" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relaatiot" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Vientimetodi" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Tallenna palvelimelle" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Korvaa jo olemassa oleva(t) tiedosto(t)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Muista tiedostonimen pohja" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Laita taulujen ja sarakkeiden nimet lainausmerkkeihin" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL-yhteensopiva tila" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE -valinnat:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Luonti-, päivitys- ja tarkistuspäiväykset" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Käytä viivästettyjä lisäyslauseita" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Älä tarkista viiteavaimia" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Vie näkymiä tauluina" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Lisää %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Käytä BLOB-arvoissa heksalukuja" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Käytä IGNORE:a INSERT-komennoissa" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Tietoa lisättäessä käytettävä syntaksi" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Luodun kyselyn enimmäispituus" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Viennin tyyppi" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Lisää transaktio" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Viennin aika UTC:nä" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "Pakota käyttämään phpMyAdminissa suojattua yhteyttä" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Pakota käyttämään SSL-yhteyttä" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -5919,170 +5932,170 @@ msgstr "" "Lajittelujärjestys viiteavaimen pudotusvalikon kohteille; [kbd]content[/kbd] " "on viitattu tieto, [kbd]id[/kbd] on avainarvo" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Viiteavaimen pudotusvalikon järjestys" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "Pudotusvalikkoa käytetään, jos kohteita on vähemmän" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Viiteavaimen rajoitus" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Selaustila" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "Mukauta selaustilaa" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default options" msgid "Customize default options." msgstr "Mukauta oletusvalintoja" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Kehittäjä" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "Asetukset phpMyAdmin-kehittäjille" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Muokkaustila" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "Mukauta muokkaustilaa" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Vie oletusarvot" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Ominaisuudet" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Yleiset" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "Aseta muutamia usein käytettyjä valintoja" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Tuo oletusarvot" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "Mukauta yleistuonnin oletusasetuksia" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Tuonti ja vienti" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "Aseta tuonti- ja vientihakemistot sekä pakkauksen asetukset" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "Tietokantojen näyttöasetukset" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigointi paneeli" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation panel" msgid "Customize appearance of the navigation panel." msgstr "Mukauta navigointipalkin näkymää" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Palvelimet" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "Palvelinten näyttöasetukset" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "Taulujen näyttöasetukset" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Pääpaneeli" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Muut ydinasetukset" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "Asetukset, jotka eivät sovi muualle" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Sivun otsikot" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6091,19 +6104,19 @@ msgstr "" "documentation[/doc] magic strings, jonka avulla voidaan saada erityisiä " "arvoja." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Kyselyikkuna" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Mukauta kyselyikkunan asetuksia" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Turvallisuus" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6115,25 +6128,25 @@ msgstr "" "Huomaa, että phpMyAdmin on vain käyttöliittymä, ja sen ominaisuuksia ei ole " "rajoitettu MySQL-tietokantaan" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Perusasetukset" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Todennus" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "Todennuksen valinnat" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Palvelimen määrittely" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6145,17 +6158,17 @@ msgstr "" "Palvelimen lisäasetus; älä muuta näitä valintoja, ellet tiedä, mihin niitä " "käytetään." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "Anna palvelimen yhteysparametrit" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Asetusmuisti" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -6169,68 +6182,68 @@ msgstr "" "Määritä phpMyAdmin määritysten tallennus käyttääksesi lisäasetuksia, katso " "ohjeista [doc@linked-tables]phpMyAdmin määritysten tallennus[/doc]" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Muutosten seuranta" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Mukauta tuonnin oletusasetuksia" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Mukauta navigointi paneelia" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Mukauta pääpaneelia" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL-kyselyt" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL-kyselykenttä" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "Mukauta SQL-kyselykentässä näytettäviä linkkejä" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "SQL-kyselyjen asetukset" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Käynnistys" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "Mukauta käynnistyssivua" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Tietokannan rakenne" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 #, fuzzy #| msgid "" #| "Choose which details to show in the database structure (list of tables)" @@ -6240,67 +6253,67 @@ msgstr "" "Valitse, mitkä tiedot näytetään tietokannan rakenteessa (taulukoiden " "luettelo)" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Taulun rakenne" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 #, fuzzy #| msgid "Settings for the table structure (list of columns)" msgid "Settings for the table structure (list of columns)." msgstr "Taulukkorakenteen asetukset (sarakkeiden luettelo)" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Välilehdet" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Valitse haluamasi välilehtien toiminta" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relaatioskeema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Paperin koko" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Tekstikentät" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "Muokkaa tekstikenttiä" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy!-teksti" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Mukauta oletusvalintoja" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Varoitukset" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Kytke osa phpMyAdminin näyttämistä varoituksista pois päältä" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6312,15 +6325,15 @@ msgstr "" "Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/Gzip]gzip" "[/a]-pakkausta" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Iconv-laajennuksen lisäparametrit" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6332,11 +6345,11 @@ msgstr "" "Jos käytössä, phpMyAdmin jatkaa monilausekyselyjen laskemista, vaikka yksi " "kyselyistä epäonnistui" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Älä välitä peräkkäisistä lausevirheistä" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6346,28 +6359,28 @@ msgstr "" "Tätä kannattaa käyttää tuotaessa suuria tiedostoja; se saattaa kuitenkin " "katkaista transaktiot." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Osittainen tuonti: salli keskeytys" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Älä tarkista viiteavaimia" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Älä keskeytä INSERT-virheen tapauksessa" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Korvaa taulun nykyiset rivit tiedostolla" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6379,62 +6392,62 @@ msgstr "" "Oletusmuoto; huomaa, että tämä luettelo riippu sijainnista (tietokanta, " "taulu), ja käytettävissä on vain SQL" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Tuotavan tiedoston muoto" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Käytä LOCAL-avainsanaa" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Sarakenimet ensimmäisessä rivissä" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Älä tuo tyhjiä riviä" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Tuo valuutta-arvot ($5.00 muotoon 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Tuo prosenttiyksiköt sopivin desimaaliluvuin (12.00% muotoon .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "Alusta ohitettavien kyselyjen määrä" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Osittainen tuonti: ohita kyselyjä" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "Kuinka monta riviä voi lisätä kerrallaan" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Lisättyjen rivien määrä" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "" #| "Maximum number of characters shown in any non-numeric column on browse " @@ -6445,11 +6458,11 @@ msgstr "" "Selainnäkymässä näytettävien merkkien määrä missä tahansa ei numeerisessa " "sarakkeessa" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Merkkien raja sarakkeessa" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6460,11 +6473,11 @@ msgstr "" "asetetaan FALSE:ksi, saattaa helposti unohtaa kirjata muut palvelimet ulos, " "mikäli yhteyksiä on muodostettu useisiin palvelimiin." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Poista kaikki evästeet uloskirjauduttaessa" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6475,11 +6488,11 @@ msgid "" msgstr "" "Määritä, onko evästetodennustilassa muistettava edellinen kirjautuminen" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Anna käyttäjänimi" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6491,56 +6504,56 @@ msgstr "" "ajan ja poistetaan, kun selainikkuna suljetaan. Tätä suositellaan " "epäluotetuille ympäristöille." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Kirjautumisevästeen tallennus" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "Määrittele sekunteina, kuinka pitkään kirjautumiseväste on kelvollinen" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Kirjautumisevästeen kelpoisuus" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "Kaksinkertainen tekstialue LONGTEXT sarakkeille" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Isompi tekstialue LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Näytettävän SQL-kyselyn enimmäispituus" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Näytettävän SQL-kyselyn enimmäispituus" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Käyttäjät eivät voi määrittää suurempaa arvoa" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of databases displayed in database list" msgid "Maximum number of databases displayed in database list." msgstr "Tietokantaluettelossa näkyvien tietokantojen enimmäismäärä" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Tietokantoja enintään" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " @@ -6550,13 +6563,13 @@ msgid "" "the navigation tree." msgstr "Nimikkeiden määrä jotka voidaan näyttää navigointipuun eri sivuilla" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum items in branch" msgid "Maximum items on first level" msgstr "Kohteiden enimmäismäärä haarassa" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 #, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " @@ -6566,11 +6579,11 @@ msgid "" "tree." msgstr "Nimikkeiden määrä jotka voidaan näyttää navigointipuun eri sivuilla" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Kohteiden enimmäismäärä haarassa" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6578,21 +6591,21 @@ msgstr "" "Näytettävien rivien määrä selattaessa tulostaulua. Jos tulostaulussa on " "enemmän rivejä, näytetään \"Edellinen\"- ja \"Seuraava\"-linkit." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Näytettävien rivien enimmäismäärä" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Tauluja enintään" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6604,45 +6617,45 @@ msgstr "" "Skriptin varaama enimmäistavumäärä, esim. [kbd]32M[/kbd] ([kbd]0[/kbd] = ei " "rajoitusta)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Muistirajoitus" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Näytä piilotetut navigointipuun kohteet." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show logo in navigation panel." msgstr "Näytä navigointi paneelissa logo" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Näytä logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation panel will point to" msgid "URL where logo in the navigation panel will point to." msgstr "URL-osoite, johon logo navigointi paneelissa osoittaa" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Logon linkin osoite" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -6654,31 +6667,31 @@ msgstr "" "Avaa linkitetty sivu pääikkunassa: ([kbd]main[/kbd]) tai uudessa ikkunassa: " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Logon linkin kohde" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the navigation panel" msgid "Display server choice at the top of the navigation panel." msgstr "Näytä palvelimen valinta navigointi paneelin yläreunassa" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Näytä palvelinten valinta" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Pikakäyttökuvakkeen kohde" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Pikakäyttökuvakkeen kohde" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6686,15 +6699,15 @@ msgstr "" "Määrittää kohteiden (taulukot, näkymät, rutiinit ja tapahtumat) suodattimen " "vähimmäismäärän." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Suodatimessa näytettävien kohteiden vähimmäismäärä" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Taululuettelossa näkyvien taulujen minimimäärä" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Group items in the navigation tree (determined by the separator defined " @@ -6706,111 +6719,111 @@ msgstr "" "Näytä tietokannat navigointipuuna (puu määritellään alla osoitetulla " "erottimella)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Navigointipuun ryhmittäminen" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "Merkkijono, joka jakaa tietokannat eri puutasoille" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Tietokantapuun erotin" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "Merkkijono, joka jakaa taulut eri puutasoille" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Taulupuun erotin" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Taulupuun enimmäissyvyys" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "Korosta kohdistimen alla oleva palvelin" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Käytä korostusta" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Taulukon navigointipalkki" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Viimeksi käytettyjen taululuettelo, 0 poistaa käytöstä" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Viimeksi käytettyjen taululuettelo, 0 poistaa käytöstä" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Viimeksi käytetty taulut" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "Nämä ovat Muokkaa, kopioi ja Poista linkit" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Tässä näytetään taulukon rivien linkit" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Luonnollinenjärjestys" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, 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:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Taulukon navigointipalkki" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip-ulostulon puskurointi" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -6822,32 +6835,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Oletuslajittelujärjestys" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, 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:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Jatkuvat yhteydet" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -6859,11 +6872,11 @@ msgstr "" "Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste " "todennuksesta" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -6875,29 +6888,29 @@ 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 "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Miten menun välilehdet näytetään" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Suojaa binäärisarakkeet" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6907,136 +6920,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Pysyvä kyselyhistoria" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, 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:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Kyselyhistorian pituus" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Merkistön uudelleenkoodaus" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Muista taulun järjestys" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Oletuslajittelujärjestys" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Toista otsikoita" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Relatiivinen näyttösarake" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "Palvelinten näyttöasetukset" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Tallennushakemisto" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, 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:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Palvelintodennuksen järjestys" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, 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:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Palvelintodennuksen säännöt" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Salli kirjautumiset ilman salasanaa" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Salli pääkäyttäjän kirjautuminen" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Tämän istunnon arvo" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -7050,21 +7063,21 @@ msgstr "" "[a@http://swekey.com]SweKey-laitteistotodennuksen[/a] asetustiedoston polku " "(ei dokumenttijuuressa; suositeltu: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey-asetustiedosto" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "Käytettävä todennustyyppi" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Todennustyyppi" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -7072,11 +7085,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Kirjanmerkkitaulu" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -7088,36 +7101,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Saraketietojen taulu" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "Pakkaa MySQL-palvelimen yhteys" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Pakkaa yhteys" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Yhteystyyppi" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Hallintakäyttäjän salasana" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7131,38 +7144,38 @@ msgstr "" "lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/controluser]wikissä" "[/a]" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Hallintakäyttäjä" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Hallintapalvelin" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Hallinta portti" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, 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:608 +#: libraries/config/messages.inc.php:610 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 +7184,15 @@ msgstr "" "virheenjäljittimestä[/a] ja [a@http://bugs.mysql.com/19588]MySQL:n " "ohjelmavirheistä[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Poista INFORMATION_SCHEMA käytöstä" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Piilota tietokannat" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma__history" @@ -7191,41 +7204,41 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea, oletusarvo: [kbd]" "pma__history[/kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL-kyselyhistorian taulu" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, fuzzy #| msgid "Hostname where MySQL server is running" msgid "Hostname where MySQL server is running." msgstr "MySQL-palvelimen verkkonimi" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Palvelimen verkkonimi" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Uloskirjautumisen verkko-osoite" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Tallennettavien taulumääritysten maksimi määrä" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "Näytä alipalvelimen tilan taulu" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7237,13 +7250,13 @@ msgstr "" "Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: [kbd]" "pma__pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns table" msgstr "Keskisarakkeet" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7255,17 +7268,17 @@ msgstr "" "Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: [kbd]" "pma__table_coords[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "Yritä yhdistää ilman salasanaa" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Yhdistä ilman salasanaa" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7275,21 +7288,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Näytä vain luetteloidut tietokannat" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Config-todennuksen salasana" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7300,11 +7313,11 @@ msgstr "" "Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: [kbd]" "pma__pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF-kaavio: sivujen taulu" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7319,23 +7332,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "tietokannan nimi" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Palvelinportti" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7347,11 +7360,11 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea, oletusarvo: [kbd]" "pma__recent[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Viimeisimmäksi käytetty taulu" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7363,13 +7376,13 @@ 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 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Suosikkitaulut" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7381,11 +7394,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relaatiotaulu" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7397,15 +7410,15 @@ msgstr "" "Katso [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]todennustyyppien[/" "a] esimerkit" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Signon-istunnon nimi" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Signon-kirjautumisen verkko-osoite" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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." @@ -7413,21 +7426,21 @@ msgstr "" "Palvelinpistoke, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä " "tyhjäksi" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Palvelinpistoke" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Käytä SSL-yhteyttä" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7439,13 +7452,13 @@ msgstr "" "Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: [kbd]" "pma__table_coords[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF-kaavio: taulun koordinaatit" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " @@ -7457,11 +7470,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Näyttökenttien taulu" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables' UI preferences across sessions, " @@ -7473,49 +7486,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Käyttöliittymän ominaisuuksien taulu" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Jäljitettävä lauseke" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -7527,21 +7540,21 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kysely seuranta tukea, oletusarvo: [kbd]" "pma__history[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL-kyselyhistorian taulu" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Automaattisesti luodut versiot" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7553,33 +7566,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Käyttäjätaulukko" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Käyttäjäryhmät taulukko" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "Leave blank to disable the feature to hide and show navigation items, " @@ -7591,15 +7604,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Config-todennuksen käyttäjä" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7607,21 +7620,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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Tämän palvelimen yksityiskohtainen nimi" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Salli kaikkien rivien näyttäminen" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy #| msgid "" #| "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -7637,71 +7650,71 @@ msgstr "" "todennusta käytettäessä, koska salasana lukee suoraan asetustiedostossa; " "tämä ei estä saman komennon suorittamista suoraan." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Näytä salasananvaihtolomake" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Näytä tietokannanluontilomake" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Näytä luonnin aikaleima" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Näytä viimeisin tarkastus aikaleima" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Näytä kenttätyypit" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Näytä funktiokentät" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, 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:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Näytä vihje" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7713,15 +7726,15 @@ msgstr "" "Näyät linkki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]-" "käskyn tulosteeseen" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Näytä phpinfo()-linkki" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Näytä MySQL-palvelimen tarkat tiedot" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -7729,30 +7742,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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Näytä SQL-kyselyt" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Säilytä SQL-kyselylaatikko" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Näytä tilastot" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy #| msgid "" #| "Mark used tables and make it possible to show databases with locked tables" @@ -7762,19 +7775,19 @@ msgstr "" "Merkitse käytetyt taulut ja mahdollista lukittuja tauluja sisältävien " "tietokantojen näyttäminen" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Ohita lukitut taulut" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -7787,53 +7800,53 @@ msgstr "" "Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste " "todennuksesta" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Kirjautumisevästeen kelpoisuus" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Tekstikenttä kentät" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Tekstikenttä rivit" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Oletusotsikko" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 #, fuzzy #| msgid "" #| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following " @@ -7851,58 +7864,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Lähetyshakemisto" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, 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:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Käytä tietokantahakua" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Tarkista uusin versio" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7910,34 +7923,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "Käyttäjänimi" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Salasana" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -7949,54 +7962,54 @@ msgstr "" "Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a]-pakkausta" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "Palvelinportti" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL-kyselyt" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8018,44 +8031,44 @@ msgstr "HTTP tunnistautuminen" msgid "Signon authentication" msgstr "Sisäänkirjatumistunnitautuminen" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV käyttäen LOAD DATA -kyselyä" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "OpenDocument laskentataulukko" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Muokattu" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Tietokannan tulostusvalinnat" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excelin CSV-muoto" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument teksti" @@ -8302,20 +8315,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Ei salasanaa" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Salasana:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Kirjoita uudelleen:" @@ -8450,8 +8463,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tämä arvo on tukittu %1$sstrftime%2$s mukaan, joten voi käyttää " "ajanmuodostostusmerkkijonoja. Lisäksi tapahtuu seuraavat muutokset: %3$s. " @@ -9015,8 +9028,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9513,7 +9526,7 @@ msgstr "Poistu" msgid "phpMyAdmin documentation" msgstr "phpMyAdminin ohjeet" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -10206,11 +10219,11 @@ msgstr "Tervetuloa, toivottaa %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1" -"$sasetusskriptillä%2$s." +"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston " +"%1$sasetusskriptillä%2$s." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10453,7 +10466,7 @@ msgstr "Aseta sarakkeiden nimet ensimmäiselle riville" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11555,7 +11568,7 @@ msgstr "" "Jos ei ole, lisää seuraava rivi [mysqld]-osaan:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11563,16 +11576,16 @@ msgstr "Käyttäjänimi" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Käyttäjänimi" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Salasana" @@ -11602,10 +11615,10 @@ msgstr "Palvelimen tunnus" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Palvelin" @@ -11619,40 +11632,40 @@ msgstr "" "host=host_name." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Mikä tahansa palvelin" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Paikallinen" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Tämä isäntä" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Kuka tahansa käyttäjä" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Käytä tekstikenttää" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Käytä isäntätaulua" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11661,7 +11674,7 @@ msgstr "" "käytetään Host-taulussa olevia tietoja." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Kirjoita uudelleen" @@ -12513,7 +12526,7 @@ msgstr "Ei mitään" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12583,14 +12596,14 @@ msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12601,7 +12614,7 @@ msgid "Administration" msgstr "Hallinta" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" @@ -12612,7 +12625,7 @@ msgid "Global" msgstr "globaali" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" @@ -12631,152 +12644,152 @@ msgstr "" "Sallii käyttäjien ja käyttöoikeuksien lisäämisen lataamatta " "käyttöoikeustauluja uudestaan." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Kirjautumistiedot" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Käytä tekstikenttää" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Älä vaihda salasanaa" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Käyttäjän %s salasanan vaihto onnistui." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on poistettu." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Lisää käyttäjä" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Tietokanta käyttäjälle" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Anna tietokannalle \"%s\" kaikki oikeudet." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Näkymä %s on poistettu" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Käyttäjä" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Käyttäjiä ei ole." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Mikä tahansa" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globaali" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "tietokantakohtainen" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "korvausmerkki" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "tietokantakohtainen" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Muokkaa käyttöoikeuksia" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Pura käyttöoikeudet" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Muokkaa palvelinta" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… säilytä vanha käyttäjä." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… poista vanha käyttäjä käyttäjätauluista." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " "käyttäjä sen jälkeen." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12784,129 +12797,129 @@ msgstr "" "… poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen " "käyttöoikeudet." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Korvausmerkkien _ ja % eteen on lisättävä \\-merkki, jotta ne näkyisivät " "oikein." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Lisää käyttöoikeudet seuraavaan tauluun" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Poista valitut käyttäjät" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Ladataan käyttöoikeuksia uudelleen" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on päivitetty." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Poistetaan: %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Käyttäjä %s on jo olemassa!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Käyttöoikeudet" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Muokkaa käyttöoikeuksia" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Käyttäjien yleiskatsaus" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen " "käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen " "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." @@ -14877,21 +14890,21 @@ msgstr "Indeksivälimuistin koko" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indeksin tyyppi:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Käyttäjä:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Kommentti:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15986,8 +15999,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -16122,8 +16135,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -17693,8 +17706,8 @@ msgstr "concurrent_insert on asetettu arvoon 0" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." #~ msgstr "" -#~ "Tälle muunnokselle ei ole saatavilla kuvausta.
Kysy tekijältä, mitä %" -#~ "s tekee." +#~ "Tälle muunnokselle ei ole saatavilla kuvausta.
Kysy tekijältä, mitä " +#~ "%s tekee." #~ msgid "" #~ "MIME types printed in italics do not have a separate transformation " @@ -17817,8 +17830,8 @@ msgstr "concurrent_insert on asetettu arvoon 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta %" -#~ "s?" +#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta " +#~ "%s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/fr.po b/po/fr.po index caea1d92b0..fe6ad548c6 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-19 13:07+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" @@ -68,7 +68,7 @@ msgstr "Commentaires sur la table : " #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "Colonne" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "Relié à" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "Primaire" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "Non" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -264,14 +264,14 @@ msgstr "" "du problème%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Table" @@ -284,7 +284,7 @@ msgid "Rows" msgstr "Lignes" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Taille" @@ -374,9 +374,9 @@ msgstr "État" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -573,15 +573,15 @@ msgstr "Ajouter géométrie" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -596,8 +596,8 @@ msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -"Choisissez «GeomFromText» depuis la colonne «Fonction» et collez la chaîne ci " -"dessous dans le champ «Valeur»." +"Choisissez «GeomFromText» depuis la colonne «Fonction» et collez la chaîne " +"ci dessous dans le champ «Valeur»." #: import.php:54 msgid "Succeeded" @@ -614,8 +614,8 @@ msgstr "Paramètres incomplets" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Vous avez probablement tenté de télécharger un fichier trop volumineux. " "Veuillez vous référer à la %sdocumentation%s pour trouver le moyen de " @@ -705,7 +705,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Retour" @@ -729,7 +729,7 @@ msgid "General Settings" msgstr "Paramètres généraux" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Modifier le mot de passe" @@ -802,7 +802,7 @@ msgstr "Version : " #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentation" @@ -834,8 +834,8 @@ msgid "" "default, is open to intrusion, and you really should fix this security hole " "by setting a password for user 'root'." msgstr "" -"Vous êtes connecté en tant que «root » sans mot de passe, ce qui correspond à " -"la valeur par défaut de MySQL. Votre serveur MySQL est donc ouvert aux " +"Vous êtes connecté en tant que «root » sans mot de passe, ce qui correspond " +"à la valeur par défaut de MySQL. Votre serveur MySQL est donc ouvert aux " "intrusions, et vous devriez corriger ce problème de sécurité en assignant un " "mot de passe à l'utilisateur «root »." @@ -907,8 +907,8 @@ msgid "" "extended features have been deactivated. %sFind out why%s. " msgstr "" "Le stockage de configurations phpMyAdmin n'est pas complètement configuré, " -"certaines fonctionnalités ont été désactivées. %sVoir l'analyse du problème%" -"s. " +"certaines fonctionnalités ont été désactivées. %sVoir l'analyse du problème" +"%s. " #: index.php:549 msgid "" @@ -1058,7 +1058,7 @@ msgstr "Ajouter Index" msgid "Edit Index" msgstr "Modifier un index" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Ajouter %s colonne(s) à l'index" @@ -1085,7 +1085,7 @@ msgstr "Vous devez ajouter au moins une colonne." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Aperçu SQL" @@ -1114,12 +1114,12 @@ msgstr "Le nom de serveur est vide !" msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide !" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Le mot de passe est vide !" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" @@ -1320,7 +1320,7 @@ msgstr "Veuillez ajouter au moins une variable à la série !" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1614,7 +1614,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1826,7 +1826,7 @@ msgstr "Montrer zone SQL" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2080,7 +2080,7 @@ msgstr "Données reliées à ce point" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorer" @@ -2258,7 +2258,7 @@ msgstr "Cliquer sur la flèche
pour gérer l'affichage des colonnes." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Tout afficher" @@ -2363,7 +2363,7 @@ msgstr "Cacher le panneau" msgid "Show hidden navigation tree items." msgstr "Montrer les éléments de navigation cachés." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Relier au panneau principal" @@ -2871,16 +2871,16 @@ msgid "Delete" msgstr "Effacer" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2995,7 +2995,7 @@ msgid "During current session" msgstr "Durant la session en cours" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3375,11 +3375,11 @@ msgstr "Votre requête SQL a été exécutée avec succès." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %" -"sdocumentation%s." +"Cette vue contient au moins ce nombre de lignes. Veuillez référer à " +"%sdocumentation%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3413,6 +3413,7 @@ msgstr "Pour la sélection : " #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3428,12 +3429,12 @@ msgstr "Modifier" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3629,7 +3630,7 @@ msgstr "" "supprimé." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Serveur" @@ -3644,11 +3645,11 @@ msgstr "Vue" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3664,7 +3665,7 @@ msgstr "Structure" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3690,9 +3691,9 @@ msgstr "Insérer" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilèges" @@ -3752,9 +3753,9 @@ msgid "Central columns" msgstr "Colonnes centrales" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Bases de données" @@ -3862,7 +3863,7 @@ msgid "Recent" msgstr "Récentes" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Tables préférées" @@ -3933,7 +3934,7 @@ msgstr "Mécanisme de tri" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4250,16 +4251,16 @@ msgstr "Thème : " msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" -"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de -" -"128 à 127. Pour les nombres sans signe, c'est de 0 à 255" +"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de " +"-128 à 127. Pour les nombres sans signe, c'est de 0 à 255" #: libraries/Types.class.php:322 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" -"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de -" -"32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535" +"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de " +"-32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535" #: libraries/Types.class.php:324 msgid "" @@ -4298,16 +4299,16 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Un petit nombre en virgule flottante, la fourchette des valeurs est -" -"3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38" +"Un petit nombre en virgule flottante, la fourchette des valeurs est " +"-3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Un nombre en virgule flottante double-précision, la fourchette des valeurs " @@ -4357,9 +4358,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à «2038-" -"01-09 03:14:07» UTC, en nombre de secondes depuis le moment de référence " -"(«1970-01-01 00:00:00» UTC)" +"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à " +"«2038-01-09 03:14:07» UTC, en nombre de secondes depuis le moment de " +"référence («1970-01-01 00:00:00» UTC)" #: libraries/Types.class.php:350 libraries/Types.class.php:788 #, php-format @@ -4610,7 +4611,7 @@ msgstr "Taille maximum: %s%s" msgid "MySQL said: " msgstr "MySQL a répondu: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Expliquer SQL" @@ -4622,7 +4623,7 @@ msgstr "Ne pas expliquer SQL" msgid "Without PHP Code" msgstr "Sans source PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Créer source PHP" @@ -4734,13 +4735,13 @@ msgstr "Description" msgid "Use this value" msgstr "Utiliser cette valeur" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5144,7 +5145,7 @@ msgid "Set value: %s" msgstr "Assigner la valeur: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Ramener la valeur par défaut" @@ -5258,8 +5259,8 @@ msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." msgstr "" -"Si vous utilisez l'authentification [kbd]cookie[/kbd] et que le paramètre %" -"sLogin cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie " +"Si vous utilisez l'authentification [kbd]cookie[/kbd] et que le paramètre " +"%sLogin cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie " "validity%s doit avoir une valeur plus petite ou égale à celui-ci." #: libraries/config/ServerConfigChecks.class.php:426 @@ -5270,8 +5271,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %" -"sauthentification de l'hôte%s et %sserveurs mandataires de confiance%s. " +"Si vous l'estimez nécessaire, utilisez des paramètres de protection - " +"%sauthentification de l'hôte%s et %sserveurs mandataires de confiance%s. " "Cependant, la protection par adresse IP peut ne pas être fiable si votre IP " "appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y " "compris, sont connectés." @@ -5567,23 +5568,35 @@ msgstr "L'onglet initial lors de l'accès à une table." msgid "Default table tab" msgstr "Onglet par défaut pour tables" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Entourer les noms de tables et colonnes de guillemets obliques" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Entourer les noms de tables et colonnes de guillemets obliques" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Si les actions dans la structure de table doivent être masquées." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Cacher les actions dans la structure de table" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Montrer la liste des serveurs au lieu d'un menu déroulant." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Affiche les serveurs sous forme de liste" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5591,11 +5604,11 @@ msgstr "" "Désactiver les opérations de masse sur les tables, comme l'optimisation ou " "la réparation." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Désactiver la maintenance de tables multiples" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5603,39 +5616,38 @@ msgstr "" "Nombre de secondes allouées à l'exécution des scripts ([kbd]0[/kbd] signifie " "illimité)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Durée maximum d'exécution" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format -#| msgid "Add %s statement" msgid "Use %s statement" msgstr "Utiliser l'énoncé %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Transmettre" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Jeu de caractères du fichier" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compression" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5645,60 +5657,60 @@ msgstr "Compression" msgid "Put columns names in the first row" msgstr "Afficher les noms de colonnes en première ligne" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Colonnes entourées par" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Caractère d'échappement" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Remplacer NULL par" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Enlève les caractères de fin de ligne à l'intérieur des colonnes" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Colonnes terminées par" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Lignes terminées par" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel en version" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Modèle de nom de base de données" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Modèle de nom de serveur" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Modèle de nom de table" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5707,137 +5719,137 @@ msgstr "Modèle de nom de table" msgid "Dump table" msgstr "Exporter la table" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Inclure les sous-titres" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Sous-titre de la table" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Inclure les sous-titres" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Clé de l'intitulé" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Type MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Méthode d'exportation" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Sauvegarder sur le serveur" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Écraser les fichiers existants" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Se souvenir du modèle de nom de fichier" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Entourer les noms de tables et colonnes de guillemets obliques" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Mode de compatibilité SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Options pour CREATE TABLE : " -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Dates de création/mise à jour/vérification" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Insertions avec délai" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Désactiver la vérification des clés étrangères" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exporter les vues comme des tables" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Ajouter %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Utiliser l'hexadécimal pour une colonne BINARY ou BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Ne pas insérer une ligne faisant doublon avec une clé unique" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Syntaxe à utiliser lors de l'insertion de données" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Taille maximum de la requête générée" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Type d'exportation" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Utiliser le mode transactionnel" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exporter l'heure en format UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Force des connexions https entre le navigateur et phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Forcer les connexions SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5845,146 +5857,146 @@ msgstr "" "Ordre du tri pour les éléments de clé étrangère; [kbd]content[/kbd] signifie " "la donnée référencée, [kbd]id[/kbd] représente la valeur de la clé." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Ordre dans le menu des clés étrangères" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" "Un menu déroulant sera utilisé si le nombre de valeurs est inférieur à cette " "limite." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Limite pour clé étrangère" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Mode de navigation" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Personnaliser le mode affichage." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Personnaliser les options par défaut." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Développeur" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Paramètres pour les développeurs phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Mode édition" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Personnaliser le mode édition." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Valeurs par défaut pour exportation" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Personnaliser les valeurs utilisées habituellement." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Fonctionnalités" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Général" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Réglage de quelques options couramment utilisées." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Valeurs par défaut pour importation" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Personnaliser les valeurs utilisées habituellement." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importation / exportation" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" "Configurez les répertoires d'importation et d'exportation ainsi que les " "options de compression." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Options d'affichage des bases de données." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Panneau de navigation" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Personnaliser l'apparence du panneau de navigation." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Serveurs" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Options d'affichage des serveurs." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Options d'affichage des tables." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Panneau principal" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Autres paramètres de base" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Paramètres divers." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Titres de page" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5993,19 +6005,19 @@ msgstr "" "[doc@cfg_TitleTable]documentation[/doc] pour les chaînes magiques pouvant " "être utilisées." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Fenêtre de requête" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Personnaliser le panneau de requêtes" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Sécurité" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6013,23 +6025,23 @@ msgstr "" "Veuillez noter que phpMyAdmin n'est qu'une interface et que ses " "fonctionnalités ne limitent en rien MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Configuration de base" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Type d'authentification" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Paramètres d'authentification." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Configuration du serveur" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6037,15 +6049,15 @@ msgstr "" "Configuration avancée, assurez-vous de connaître la signification de ces " "options avant de les modifier." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Entrez les paramètres de connexion au serveur." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Stockage de configurations" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6055,11 +6067,11 @@ msgstr "" "fonctionnalités additionnelles, voir [doc@linked-tables]phpMyAdmin " "configuration storage[/doc] dans la documentation." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Suivi des changements" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6067,107 +6079,107 @@ msgstr "" "Suivi des changements faits dans la base de données. Requiert le stockage de " "configurations phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Personnaliser les valeurs pour exportation" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Personnaliser les valeurs pour importation" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Personnaliser le panneau de navigation" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Personnaliser le panneau principal" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Requêtes SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Boîte de requêtes SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Personnaliser les liens affichés dans les boîtes de requêtes SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Paramètres des requêtes SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Page de départ" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Personnaliser la page de départ." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Structure de base de données" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "Choisissez les détails à afficher dans la liste des tables." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Structure de table" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Réglages pour la structure de table (liste des colonnes)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Onglets" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Personnaliser les onglets." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Afficher le schéma relationnel" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Taille du papier" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Champs texte" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Personnaliser les champs de saisie." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texte Texy" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Personnaliser les options par défaut" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Avertissements" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Désactiver certains avertissements affichés." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6175,15 +6187,15 @@ msgstr "" "Active la compression [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] pour les " "opérations d'importation et d'exportation." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Paramètres pour iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6191,11 +6203,11 @@ msgstr "" "Si activé, phpMyAdmin continue le traitement des requêtes multi-énoncés même " "en cas d'échec de l'un des énoncés." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignorer les erreurs dans les requêtes multi-énoncés" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6205,29 +6217,28 @@ msgstr "" "point d'être atteinte. Ceci pourrait aider à importer des fichiers " "volumineux, au détriment du respect des transactions." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Permettre l'interruption lors de l'importation" -#: libraries/config/messages.inc.php:336 -#| msgid "Disable foreign key checks" +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" "Désactiver temporairement les contrôles de clés étrangères lors de " "l'importation" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Ne pas arrêter l'importation lors d'une erreur d'énoncé INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Remplacer les données de la table avec le fichier" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6235,69 +6246,69 @@ msgstr "" "Format par défaut; soyez conscient que cette liste dépend du contexte (base " "de données, table) et que seul SQL est toujours disponible." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Format du fichier d'importation" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Utiliser l'option LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Noms de colonnes en première ligne" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Ne pas importer les lignes vides" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importer les valeurs de monnaie ($5.00 devient 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importer les pourcentages en tant que décimales (12.00% devient .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Nombre de requêtes à sauter à partir du début." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Nombre de requêtes à ignorer" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne pas utiliser AUTO_INCREMENT pour la valeur zéro" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Valeur initiale des zones de glissement" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Le nombre de lignes qui peuvent être insérées à la fois." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Nombre de lignes à insérer" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Nombre maximum de caractères affichés dans toute colonne non numérique en " "mode Afficher." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Limiter le nombre de caractères dans la colonne" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6306,11 +6317,11 @@ msgstr "" "Si TRUE, la déconnexion se produit pour tous les serveurs; si FALSE, on se " "déconnecte seulement du serveur courant." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Détruire tous les cookies à la déconnexion" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6318,11 +6329,11 @@ msgstr "" "Définit si le nom de l'utilisateur précédent devrait apparaître dans le " "panneau de connexion en mode d'authentification [kbd]cookie[/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Se souvenir du nom d'utilisateur" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6334,49 +6345,49 @@ msgstr "" "conservé que pour la session; ceci est recommandé si l'environnement n'est " "pas digne de confiance." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Stockage du cookie" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" "Définit pendant combien de temps (en secondes) la connexion demeure valide." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Durée de validité de la connexion en mode cookie" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Doubler la taille de la zone de texte pour les colonnes LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Zone de texte plus grande pour LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Nombre maximum de caractères quand une requête SQL est affichée." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Taille maximum des requêtes SQL affichées" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Les utilisateurs ne peuvent choisir une plus grande valeur" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Nombre maximum de bases de données affichées dans la liste." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Nombre maximum de bases de données" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6384,11 +6395,11 @@ msgstr "" "Le nombre d'éléments qui peuvent être affichés pour chaque page du premier " "niveau de l'arborescence de navigation." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Nombre maximum d'éléments au premier niveau" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6396,11 +6407,11 @@ msgstr "" "Le nombre d'éléments qui peuvent être affichés pour chaque page de " "l'arborescence de navigation." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Nombre maximum d'éléments dans la branche" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6410,19 +6421,19 @@ msgstr "" "« Suivant » et « Précé" "dent » seront affichés." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Nombre maximum de lignes à afficher" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Nombre maximum de tables affichées dans la liste des tables." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Nombre maximum de tables" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6430,43 +6441,43 @@ msgstr "" "Le nombre d'octets qu'un script peut allouer, par exemple [kbd]32M[/kbd] " "([kbd]0[/kbd] signifie illimité)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Limite mémoire" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" "Dans le volet de navigation, remplace l'arborescence de la base de données " "par un sélecteur" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Afficher la navigation de bases de données en tant qu'arborescence" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Relier au panneau principal en mettant en surbrillance la base de données ou " "la table active." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Montrer le logo dans le panneau de navigation." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Affichage du logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "L'URL vers lequel pointera le logo dans le panneau de navigation." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL du lien sous le logo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6474,27 +6485,27 @@ msgstr "" "Pour la fenêtre principale, ([kbd]main[/kbd]) ou dans une nouvelle fenêtre, " "([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Fenêtre-cible pour la page ouverte lors d'un clic sur le logo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Montrer le choix de serveurs au haut du panneau de navigation." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Affiche la liste des serveurs" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Cible de l'icône d'accès rapide" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Cible de la deuxième icône d'accès rapide" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6502,15 +6513,15 @@ msgstr "" "Définit le nombre minimum d'éléments (tables, vues, procédures et " "événements) nécessaires pour afficher la boîte de filtrage." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Nombre minimum d'éléments pour afficher la boîte de filtrage" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Nombre minimum de bases de données pour activer le filtre" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6518,97 +6529,97 @@ msgstr "" "Regrouper les éléments dans l'arborescence de navigation (déterminé par le " "séparateur défini plus bas)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Regrouper les éléments dans l'arborescence" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Chaîne qui sépare les noms de bases de données en niveaux." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Séparateur pour l'arborescence des bases de données" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Chaîne qui sépare les noms de table en niveaux." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Séparateur pour l'arborescence des noms de tables" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Nombre de niveaux pour l'arborescence des tables" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Faire ressortir le nom du serveur dans le panneau de navigation." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Active la surbrillance" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" "S'il faut offrir la possibilité d'expansion de l'arborescence dans le " "panneau de navigation." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Permettre l'expansion de l'arborescence dans la navigation" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Nombre maximum de tables récentes; mettre 0 pour désactiver." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Le nombre maximum de tables préférées; définir à 0 pour désactiver." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Tables récemment utilisées" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Il s'agit des liens Modifier, Copier et Effacer." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 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:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Ordre naturel" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 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:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Barre de navigation" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "Sert à augmenter la vitesse des transferts HTTP." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Tampon de sortie GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6616,19 +6627,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Ordre de tri par défaut" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Connexions persistantes au serveur MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Connexions persistantes" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6637,11 +6648,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tables manquantes pour le stockage de configurations phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6649,11 +6660,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Avertissement d'écart Serveur/bibliothèque" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6661,27 +6672,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Avertissement de mot réservé MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Comment afficher les onglets de menu" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Comment afficher divers liens d'action" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Empêche l'édition des colonnes BLOB et BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Protéger les colonnes avec contenu binaire" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6691,109 +6702,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Historique permanent des requêtes" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Le nombre de requêtes à conserver dans l'historique." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Taille de l'historique" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Moteur de conversion" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Mémoriser l'ordre de tri de la table" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Ordre de tri par défaut pour la clé primaire" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Répéter les en-têtes" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Édition de grille : action de déclenchement" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Affichage relationnel" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Pour les options d'affichage" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Répertoire de sauvegarde" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Laisser vide si non utilisé." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Ordre d'autorisation des serveurs" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Laisser vide pour la valeur par défaut." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Règles d'autorisation des serveurs" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Permettre les connexions sans fournir de mot de passe" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Permettre une connexion à root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Fuseau horaire pour la session" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" @@ -6801,16 +6812,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:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Domaine de protection HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6820,19 +6831,19 @@ msgstr "" "l'authentification matérielle Swekey[/a] (ne pas placer sous la racine des " "documents; suggestion : /etc/swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Fichier de configuration SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Type d'authentification." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Type d'authentification" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6840,11 +6851,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Table pour signets" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6852,33 +6863,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Table pour informations sur les colonnes" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Comprime la connexion au serveur MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Utiliser le mode compression sur la connexion" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Type de connexion" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Mot de passe de l'utilisateur de contrôle" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6886,11 +6897,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Utilisateur de contrôle" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6898,11 +6909,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:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Serveur de contrôle" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6912,15 +6923,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Port de contrôle" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Masquer les bases dont le nom correspond à l'expression (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6928,15 +6939,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Empêcher l'accès à INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Masquer les bases de données" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6944,23 +6955,23 @@ msgstr "" "Laisser vider pour désactiver l'historique des requêtes SQL, suggestion : " "[kbd]pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tables pour historique des requêtes SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Le nom du serveur sur lequel MySQL est en exécution." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Nom du serveur" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL pour quitter" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6968,15 +6979,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:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Nombre maximum de préférences de tables à conserver" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Table pour les signets de recherche sauvegardés" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6984,11 +6995,11 @@ msgstr "" "Laisser vider pour désactiver le support des recherches sauvegardées, " "suggestion : [kbd]pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Table pour les colonnes centrales" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -6996,15 +7007,15 @@ msgstr "" "Laisser vider pour désactiver les colonnes centrales, suggestion : [kbd]" "pma__central_columns[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Essayer de se connecter sans mot de passe." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Connexion sans mot de passe" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7014,31 +7025,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Restreindre la liste des bases de données" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Mot de passe pour méthode config" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "Table pour décrire les schémas en PDF" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7048,22 +7059,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Nom de base de données" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Port" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7071,11 +7082,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Table récemment utilisée" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7083,11 +7094,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Table pour les tables préférées" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7095,11 +7106,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Table relationnelle" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7107,44 +7118,44 @@ msgstr "" "Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] pour un exemple." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Nom de session pour méthode signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL pour connexion" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Interface de connexion socket" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Utiliser SSL pour la connexion au serveur MySQL." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Utiliser SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 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:688 +#: libraries/config/messages.inc.php:690 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:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7152,11 +7163,11 @@ msgstr "" "Sert à définir les colonnes descriptives, laisser vide pour désactiver; " "suggestion : [kbd]pma__table_info[/kbd]." -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Table pour colonnes descriptives" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7164,11 +7175,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Table de stockage des préférences d'interface de table" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7176,11 +7187,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Ajouter DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7188,11 +7199,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Ajouter DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7200,21 +7211,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Ajouter DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Énoncés à suivre" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7222,11 +7233,11 @@ msgstr "" "Laisser vide pour désactiver le suivi des changements SQL; suggestion : [kbd]" "pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Table pour le suivi des changements SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7234,11 +7245,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:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Création automatique de versions" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7246,11 +7257,11 @@ msgstr "" "Laisser vide pour désactiver les préférences utilisateur; suggestion : [kbd]" "pma__config[/kbd]." -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Table de stockage des préférences utilisateur" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7260,11 +7271,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Table des utilisateurs" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7274,11 +7285,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Table des groupes d'utilisateurs" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7287,15 +7298,15 @@ msgstr "" "d'afficher les éléments de navigation; suggestion : [kbd]" "pma__navigationhiding[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Table contenant les éléments de navigation cachés" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Utilisateur pour méthode config" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7303,19 +7314,19 @@ msgstr "" "Une description conviviale de ce serveur. Laisser vide pour utiliser à la " "place le nom du serveur." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Nom à afficher pour ce serveur" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Permettre l'affichage de toutes les lignes" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7325,47 +7336,47 @@ msgstr "" "cependant on peut exécuter un changement de mot de passe manuellement avec " "la commande appropriée." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Afficher le dialogue de changement de mot de passe" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Afficher le formulaire de création de base de données" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Montrer la date de création" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Montrer la date de dernière mise à jour" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Montrer la date de dernière vérification" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7373,27 +7384,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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Montrer les champs de type de données" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Montrer les fonctions" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Afficher ou non les explications." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Montrer les explications" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7401,66 +7412,66 @@ msgstr "" "Montre un lien vers le résultat de [a@http://php.net/manual/function.phpinfo." "php]phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Afficher un lien vers phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Afficher les informations détaillées sur le serveur MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Afficher les requêtes SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Conserver la boîte de requêtes" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Afficher les statistiques" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Saute les tables verrouillées" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" "Un avertissement est affiché sur la page principale si Suhosin est détecté." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Avertissement Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7470,11 +7481,11 @@ msgstr "" "paramètre PHP session.gc_maxlifetime est moindre que celle de " "`LoginCookieValidity`." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Durée de validité de la connexion en mode cookie" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7482,11 +7493,11 @@ msgstr "" "Taille des zones de texte (colonnes) en mode édition, cette valeur sera " "augmentée pour les zones SQL (*2) et la fenêtre de requêtes (*1.25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Taille horizontale pour une zone de texte" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7494,32 +7505,32 @@ msgstr "" "Taille des zones de texte (lignes) en mode édition, cette valeur sera " "augmentée pour les zones SQL (*2) et la fenêtre de requêtes (*1.25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Taille verticale pour une zone de texte" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Titre par défaut" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7531,29 +7542,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Répertoire de téléchargement" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 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:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Permet une recherche dans toute la base de données" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7561,26 +7572,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Active le menu Développeur dans les paramètres" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Vérifier la présence d'une nouvelle version" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7593,11 +7604,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:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "URL du serveur mandataire" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7608,19 +7619,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Utilisateur du serveur mandataire" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 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:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Mot de passe du serveur mandataire" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7628,47 +7639,47 @@ 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Clé publique pour reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Clé privée pour reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Envoyer le rapport d'erreurs" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." 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." +"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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "La touche Entrée exécute les requêtes dans la console" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7676,7 +7687,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:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Activer le mode de Configuration automatique" @@ -7696,44 +7707,44 @@ msgstr "Mode d'authentification « HTTP »" msgid "Signon authentication" msgstr "Mode d'authentification « signon »" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV via LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Tableur OpenDocument" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Rapide" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Personnalisé" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Options d'exportation des bases de données" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV pour MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Texte OpenDocument" @@ -7815,7 +7826,6 @@ msgid "New page" msgstr "Nouvelle page" #: libraries/db_designer.lib.php:297 libraries/db_designer.lib.php:300 -#| msgid "Save page" msgid "Save page as" msgstr "Sauvegarder la page en tant que" @@ -7942,20 +7952,20 @@ msgstr "Ne peut pas compter des lignes dans un jeu de résultats non tamponn #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Aucun mot de passe" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Mot de passe : " #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Entrer à nouveau : " @@ -8092,8 +8102,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc " "utiliser des chaînes de format d'heure. Ces transformations additionnelles " @@ -8265,12 +8275,10 @@ msgstr "" "partir du début :" #: libraries/display_import.lib.php:332 -#| msgid "Options" msgid "Other Options:" msgstr "Autres options :" #: libraries/display_import.lib.php:338 -#| msgid "Disable foreign key checks" msgid "Disable foreign key check" msgstr "Désactiver la vérification des clés étrangères" @@ -8658,8 +8666,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." @@ -9134,7 +9142,7 @@ msgstr "Quitter" msgid "phpMyAdmin documentation" msgstr "Documentation de phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Actualiser le panneau de navigation" @@ -9831,8 +9839,8 @@ msgstr "Bienvenue dans %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La raison probable est que vous n'avez pas créé de fichier de configuration. " "Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but." @@ -10063,7 +10071,7 @@ msgstr "Afficher les noms de colonnes en première ligne : " #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Client : " @@ -11090,22 +11098,22 @@ msgstr "" "[mysqld] : " #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Nom d'utilisateur : " #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nom d'utilisateur" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Mot de passe" @@ -11133,10 +11141,10 @@ msgstr "ID du serveur" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Client" @@ -11150,38 +11158,38 @@ msgstr "" "visibles sur cette liste." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Tout client" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Ce serveur" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Tout utilisateur" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Entrez une valeur : " #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Utiliser la table Host" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11190,7 +11198,7 @@ msgstr "" "table Host sont utilisées à la place." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Entrer à nouveau" @@ -11934,7 +11942,7 @@ msgstr "Aucun" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Groupe d'utilisateurs" @@ -12010,14 +12018,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Veuillez noter que les noms de privilèges sont exprimés en anglais." @@ -12026,7 +12034,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Privilèges globaux" @@ -12035,7 +12043,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" @@ -12054,18 +12062,18 @@ msgstr "" "Permission d'ajouter des utilisateurs et des privilèges sans avoir besoin de " "recharger les privilèges." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Information pour la connexion" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Entrez une valeur" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12073,217 +12081,217 @@ msgstr "" "Un compte existe déjà avec le même nom d'utilisateur, mais éventuellement un " "nom d'hôte différent." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Conserver le mot de passe" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Le mot de passe de %s a été changé." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Vous avez révoqué les privilèges pour %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Ajouter un utilisateur" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Base de données pour cet utilisateur" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "Créer une base portant son nom et donner à cet utilisateur tous les " "privilèges sur cette base." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Donner les privilèges passepartout (utilisateur\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Donner tous les privilèges sur la base de données \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilisateurs ayant accès à \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "La vue %s a été supprimée." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Utilisateur" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "«Grant»" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Privilèges insuffisants pour visualiser les utilisateurs." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Aucun utilisateur n'a été trouvé." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "N'importe quel" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "spécifique à cette base de données" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "passepartout" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "spécifique à cette table" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Changer les privilèges" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Révoquer" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Modifier un groupe d'utilisateurs" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… conserver intact l'ancien utilisateur." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… supprimer l'ancien utilisateur." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… supprimer l'ancien utilisateur, puis recharger les privilèges au serveur." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Changement des informations de connexion / Copie d'utilisateur" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilèges de colonnes" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Ajouter des privilèges sur ces bases de données :" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "Préfixer avec \\ les passepartouts _ et % pour un usage littéral." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Ajouter des privilèges sur cette table : " -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Effacer les utilisateurs sélectionnés" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" "Supprimer les bases de données portant le même nom que les utilisateurs." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Aucun utilisateur n'a été choisi en vue de le détruire !" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Chargement des privilèges en cours" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Les utilisateurs sélectionnés ont été effacés." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Vous avez modifié les privilèges pour %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Destruction de %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "L'utilisateur %s existe déjà !" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Privilèges pour %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nouvel utilisateur" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Changer les privilèges : " -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12291,28 +12299,28 @@ msgstr "" "Remarque : Vous tentez de modifier les privilèges de l'utilisateur avec " "lequel vous êtes actuellement connecté." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Survol des utilisateurs" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin obtient la liste des privilèges directement à partir des " "tables MySQL. Le contenu de ces tables peut être différent des privilèges " "effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " "devriez %srecharger les privilèges%s avant de continuer." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur." @@ -14105,19 +14113,19 @@ msgstr "Choix d'index :" msgid "Key block size:" msgstr "Taille du bloc de clé :" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Type d'index : " -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Analyseur :" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Commentaire : " -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Faire glisser pour réordonner" @@ -15158,8 +15166,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Le ratio actuel de mémoire libre pour la cache de requêtes par rapport à la " "mémoire totale de la cache est de %s%%. Il devrait se situer à plus de 80%%" @@ -15230,9 +15238,9 @@ msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " "value is, the better (This rules firing limit: 0.1%%)" msgstr "" -"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s%" -"%. Il est souhaitable que cette valeur soit faible (Limite pour cette règle: " -"0.1%%)" +"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s" +"%%. Il est souhaitable que cette valeur soit faible (Limite pour cette " +"règle: 0.1%%)" #: libraries/advisory_rules.txt:195 msgid "Query cache max size" @@ -15311,8 +15319,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% de tous les tris causent la création de tables temporaires, cette " "valeur devrait être sous les 10%%." @@ -15843,8 +15851,8 @@ msgstr "" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" -"Max_used_connections est à %s%% de max_connections, devrait être sous les 80%" -"%" +"Max_used_connections est à %s%% de max_connections, devrait être sous les " +"80%%" #: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" @@ -16468,8 +16476,8 @@ msgstr "Le paramètre concurrent_insert a une valeur de 0" #~ "%s." #~ msgstr "" #~ "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " -#~ "PHP nécessaires ont bien été installées tel que décrit dans la %" -#~ "sdocumentation%s." +#~ "PHP nécessaires ont bien été installées tel que décrit dans la " +#~ "%sdocumentation%s." #, fuzzy #~| msgid "Error: Relation not added." diff --git a/po/fy.po b/po/fy.po index 476b53af49..e5007e7c2c 100644 --- a/po/fy.po +++ b/po/fy.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-12-31 22:40+0200\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Frisian \n" +"Language: fy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fy\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2-dev\n" @@ -69,7 +69,7 @@ msgstr "Tabelopmerkings:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "Kolom" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "Nee" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabel" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Rigen" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Grutte" @@ -371,9 +371,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -564,15 +564,15 @@ msgstr "Geometry tafoegje" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -603,8 +603,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -676,7 +676,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Werom" @@ -697,7 +697,7 @@ msgid "General Settings" msgstr "Algemiene ynstellingen" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Wachtwurd wizigjen" @@ -772,7 +772,7 @@ msgstr "Ferzje-ynformaasje:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumintaasje" @@ -992,7 +992,7 @@ msgstr "Yndeks tafoegje" msgid "Edit Index" msgstr "Yndeks bewurkje" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1019,7 +1019,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1048,12 +1048,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1250,7 +1250,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1521,7 +1521,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1732,7 +1732,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1972,7 +1972,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2233,7 +2233,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2726,16 +2726,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2850,7 +2850,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3224,8 +3224,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3260,6 +3260,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3275,12 +3276,12 @@ msgstr "Feroarje" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3467,7 +3468,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3482,11 +3483,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3502,7 +3503,7 @@ msgstr "Struktuer" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3528,9 +3529,9 @@ msgstr "Ynfoegje" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Rjochten" @@ -3590,9 +3591,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Databases" @@ -3700,7 +3701,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "" @@ -3771,7 +3772,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4114,14 +4115,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4369,7 +4370,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4381,7 +4382,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4494,13 +4495,13 @@ msgstr "Beskriuwing" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4891,7 +4892,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5245,70 +5246,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Bewarje as triem" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Opmaak" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Kompresje" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5318,60 +5327,60 @@ msgstr "Kompresje" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel-edysje" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5380,586 +5389,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Tabeltitel" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Labelkaai" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relaasjes" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Eksportearmetoade" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Bewarje op server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL-kompatibiliteitsmoadus" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s tafoegje" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Eksporteartiid in UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Untwikkelder" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Opsjes" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Algemien" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Ymportearje / eksportearje" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigaasjepaniel" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servers" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Haadpaniel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Sidetitels" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Serverkonfiguraasje" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL-queries" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL-queryfjild" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Databasestruktuer" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Tabelstruktuer" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Papierformaat" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Tekstfjilden" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Warskôgings" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Faluta ymportearje ($5.00 nei 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5967,537 +5976,537 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Unthâldlimyt" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Natuerlike folchoarder" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational key" msgid "Relational display" msgstr "Relasjonele kaai" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Sessywearde" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey-konfiguraasjetriem" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Blêdwizertabel" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6505,514 +6514,514 @@ 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL-queryskiednistabel" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Serverhostnamme" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "User groups table" msgid "Central columns table" msgstr "Brûkersgroepentabel" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Databasenamme" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Serverpoarte" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorites" msgid "Favorites table" msgstr "Favoriten" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relaasjetabel" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Serversocket" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Brûkerstabel" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Brûkersgroepentabel" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin-warskôging" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Standerttitel" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7020,52 +7029,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7073,80 +7082,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Proxy url" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Proxy brûkersnamme" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Proxy wachtwurd" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7166,44 +7175,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "OpenDocument-rekkenblêd" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Oanpast" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV foar MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument-tekst" @@ -7409,20 +7418,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Gjin wachtwurd" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Wachtwurd:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7557,8 +7566,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8050,8 +8059,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8506,7 +8515,7 @@ msgstr "Ofmelde" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-dokumintaasje" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9146,8 +9155,8 @@ msgstr "Wolkom by %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9370,7 +9379,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Host:" @@ -10266,22 +10275,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Brûkersnamme:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Brûkersnamme" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Wachtwurd" @@ -10309,10 +10318,10 @@ msgstr "Server-ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -10324,45 +10333,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Elke host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "lokaal" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Elke brûker" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11079,7 +11088,7 @@ msgstr "Gjin" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Brûkersgroep" @@ -11144,14 +11153,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11160,7 +11169,7 @@ msgid "Administration" msgstr "Administraasje" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11169,7 +11178,7 @@ msgid "Global" msgstr "Globaal" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11186,253 +11195,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Oanmeldingsynformaasje" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Brûker tafoegje" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Brûker" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Takenne" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Elke" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globaal" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "jokerteken" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Rjochten bewurkje" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Brûkersgroep bewurkje" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Rjochten foar %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nij" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Rjochten bewurkje:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13037,21 +13046,21 @@ msgstr "Yndeksnamme:" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Yndekstype:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Brûker:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Opmerking:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -13997,8 +14006,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14116,8 +14125,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/gl.po b/po/gl.po index 90c78a6ae5..8ef230edf2 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-10-10 23:59+0200\n" "Last-Translator: Xosé Calvo \n" "Language-Team: Galician \n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.10-dev\n" @@ -68,7 +68,7 @@ msgstr "Comentarios da táboa:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "Columna" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "Liga a" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "Primaria" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "Non" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -264,14 +264,14 @@ msgstr "" "que prema %saquí%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Táboa" @@ -284,7 +284,7 @@ msgid "Rows" msgstr "Filas" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Tamaño" @@ -377,9 +377,9 @@ msgstr "Estado" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -572,15 +572,15 @@ msgstr "Engadir xeometría" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -613,11 +613,11 @@ msgstr "Hai parámetros incompletos" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" -"sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " +"%sdocumentación%s para averiguar como evitar este límite." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -700,7 +700,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Recuar" @@ -721,7 +721,7 @@ msgid "General Settings" msgstr "Configuración xeral" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Trocar o contrasinal" @@ -796,7 +796,7 @@ msgstr "Información sobre a versión:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentación" @@ -939,8 +939,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na %" -"sdocumentación%s." +"O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na " +"%sdocumentación%s." #: js/messages.php:29 libraries/import.lib.php:125 sql.php:143 msgid "\"DROP DATABASE\" statements are disabled." @@ -1099,7 +1099,7 @@ msgstr "Engadir un índice" msgid "Edit Index" msgstr "Editar o índice" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Engadir %s columna(s) ao índice" @@ -1134,7 +1134,7 @@ msgstr "Debe engadir ao menos unha columna." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1167,12 +1167,12 @@ msgstr "O nome do servidor está baleiro!" msgid "The user name is empty!" msgstr "O nome do usuario está baleiro!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "O contrasinal está baleiro!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Os contrasinais non son iguais!" @@ -1377,7 +1377,7 @@ msgstr "Engada ao menos unha variábel á serie" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1672,7 +1672,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1889,7 +1889,7 @@ msgstr "Mostrar a caixa de consultas" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2162,7 +2162,7 @@ msgstr "Contido do punto de datos" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorar" @@ -2366,7 +2366,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Mostrar todo" @@ -2479,7 +2479,7 @@ msgstr "Agochar o panel" msgid "Show hidden navigation tree items." msgstr "Mostrar o logotipo no panel de navegación" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main panel" @@ -3001,16 +3001,16 @@ msgid "Delete" msgstr "Eliminar" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3149,7 +3149,7 @@ msgid "During current session" msgstr "Omitir este erro" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3560,11 +3560,11 @@ msgstr "A consulta de SQL executouse sen problemas" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%" -"s." +"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" +"%s." #: libraries/DisplayResults.class.php:4560 #, fuzzy, php-format @@ -3601,6 +3601,7 @@ msgstr "Cos marcados:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3616,12 +3617,12 @@ msgstr "Mudar" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3828,7 +3829,7 @@ msgstr "" "eliminar un deles." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Servidor" @@ -3843,11 +3844,11 @@ msgstr "Vista" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3863,7 +3864,7 @@ msgstr "Estrutura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3889,9 +3890,9 @@ msgstr "Inserir" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilexios" @@ -3953,9 +3954,9 @@ msgid "Central columns" msgstr "Columnas da área de texto" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Bases de datos" @@ -4075,7 +4076,7 @@ msgid "Recent" msgstr "Reiniciar" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4156,7 +4157,7 @@ msgstr "Ordenación" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4518,8 +4519,8 @@ msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -"Un enteiro de dous bytes; o intervalo asinado é desde -" -"9.223.372.036.854.775.808 até 9.223.372.036.854.775.807; o intervalo sen " +"Un enteiro de dous bytes; o intervalo asinado é desde " +"-9.223.372.036.854.775.808 até 9.223.372.036.854.775.807; o intervalo sen " "asinar é desde 0 até 18.446.744.073.709.551.615" #: libraries/Types.class.php:330 libraries/Types.class.php:772 @@ -4532,21 +4533,22 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Un número de vírgula flutuante pequeno; os valores permitidos son -" -"3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até 3,402823466E+38" +"Un número de vírgula flutuante pequeno; os valores permitidos son " +"-3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até 3,402823466E" +"+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Un número de vírgula flutuante de precisión dobre; os valores permitidos son-" -"1,7976931348623157E+308 até -2,2250738585072014E-308, 0 e2,2250738585072014E-" -"308 até 1,7976931348623157E+308" +"Un número de vírgula flutuante de precisión dobre; os valores permitidos " +"son-1,7976931348623157E+308 até -2,2250738585072014E-308, 0 " +"e2,2250738585072014E-308 até 1,7976931348623157E+308" #: libraries/Types.class.php:336 msgid "" @@ -4592,9 +4594,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Unha marca temporal; o intervalo é desde 1970-01-01 00:00:01 UTC até 2038-01-" -"09 03:14:07 UTC, almacenado como o número de segundos desde a época (1970-01-" -"01 00:00:00 UTC)" +"Unha marca temporal; o intervalo é desde 1970-01-01 00:00:01 UTC até " +"2038-01-09 03:14:07 UTC, almacenado como o número de segundos desde a época " +"(1970-01-01 00:00:00 UTC)" #: libraries/Types.class.php:350 libraries/Types.class.php:788 #, php-format @@ -4812,8 +4814,8 @@ msgid "" "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " "UTC; TIMESTAMP(6) can store microseconds" msgstr "" -"Unha marca temporal; o intervalo é desde «0000-01-01 00:00:01» UTC até «9999-" -"12-31 23:59:59» UTC; TIMESTAMP(6) pode almacenar microsegundos" +"Unha marca temporal; o intervalo é desde «0000-01-01 00:00:01» UTC até " +"«9999-12-31 23:59:59» UTC; TIMESTAMP(6) pode almacenar microsegundos" #: libraries/Types.class.php:794 msgid "" @@ -4843,7 +4845,7 @@ msgstr "Tamaño máximo: %s%s" msgid "MySQL said: " msgstr "Mensaxes do MySQL: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Explicar o SQL" @@ -4855,7 +4857,7 @@ msgstr "Omitir a explicación de SQL" msgid "Without PHP Code" msgstr "Sen código PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Crear código PHP" @@ -4970,13 +4972,13 @@ msgstr "Descrición" msgid "Use this value" msgstr "Usar este valor" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5395,7 +5397,7 @@ msgid "Set value: %s" msgstr "Pór como valor: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Restaurar o valor por omisión" @@ -5519,8 +5521,8 @@ msgstr "" #: libraries/config/ServerConfigChecks.class.php:419 #, fuzzy, php-format #| msgid "" -#| "If using cookie authentication and %sLogin cookie store%s is not 0, %" -#| "sLogin cookie validity%s must be set to a value less or equal to it." +#| "If using cookie authentication and %sLogin cookie store%s is not 0, " +#| "%sLogin cookie validity%s must be set to a value less or equal to it." msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." @@ -5532,18 +5534,18 @@ msgstr "" #: libraries/config/ServerConfigChecks.class.php:426 #, fuzzy, php-format #| msgid "" -#| "If you feel this is necessary, use additional protection settings - %" -#| "shost authentication%s settings and %strusted proxies list%s. However, IP-" -#| "based protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#| "If you feel this is necessary, use additional protection settings - " +#| "%shost authentication%s settings and %strusted proxies list%s. However, " +#| "IP-based protection may not be reliable if your IP belongs to an ISP " +#| "where thousands of users, including you, are connected to." msgid "" "If you feel this is necessary, use additional protection settings - %shost " "authentication%s settings and %strusted proxies list%s. However, IP-based " "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se pensa que é preciso, empregue opcións de protección adicionais - %" -"sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a " +"Se pensa que é preciso, empregue opcións de protección adicionais - " +"%sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a " "protección baseada no IP pode non ser de fiar se o IP pertence a un ISP ao " "que estean ligados miles de usuarios, incluído vostede." @@ -5911,27 +5913,39 @@ msgstr "A lapela que aparece cando se entra nunha táboa" msgid "Default table tab" msgstr "Lapela por omisión das táboas" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Encerrar os nomes das táboas e das columnas entre aspas invertidas" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Encerrar os nomes das táboas e das columnas entre aspas invertidas" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Whether the table structure actions should be hidden" msgid "Whether the table structure actions should be hidden." msgstr "Se se desexa agochar as accións da estrutura da táboa" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Agochar as accións da estrutura da táboa" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" "Mostrar a listaxe dos servidores como listaxe no canto de nun menú " "despregábel." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Mostrar os servidores nunha listaxe" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5939,11 +5953,11 @@ msgstr "" "Desactivar as operacións masivas de mantemento das táboas, como optimizar ou " "arranxar as táboas escollidas nunha base de datos." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Desactivar o mantemento de múltiples táboas" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5955,39 +5969,39 @@ msgstr "" "Indicar o número de segundos durante o que se permite que un script se " "execute ([kbd]0[/kbd] para non o limitar)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Tempo máximo de execución" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Engadir unha instrución %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Enviar (gravar nun ficheiro)
" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Conxunto de caracteres do ficheiro" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compresión" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5997,60 +6011,60 @@ msgstr "Compresión" msgid "Put columns names in the first row" msgstr "Pór os nomes das columnas na primeira fila" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Columnas delimitadas por" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Carácter de escape das columnas" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Substituír NULL por" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Eliminar os caracteres CRLF nas columnas" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Columnas terminadas en" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Liñas rematadas en" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Versión do Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Modelo de nome das bases de datos" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Modelo de nome dos servidores" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Modelo de nome dos ficheiros" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6059,133 +6073,133 @@ msgstr "Modelo de nome dos ficheiros" msgid "Dump table" msgstr "Envorcar a táboa" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Incluír o título da táboa" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Título da táboa" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Título da táboa continuado" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Chave da etiqueta" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Tipo MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relacións" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Método de exportación" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Gravar no servidor" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Eliminar o(s) ficheiro(s) xa existente(s)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Lembrar o modelo do nome de ficheiro" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Encerrar os nomes das táboas e das columnas entre aspas invertidas" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Modo de compatiblidade de SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Opcións de CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Datas de creación/actualización/comprobación" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Empregar insercións demoradas" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Desactivar as comprobacións de chaves exteriores" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Export views" msgid "Export views as tables" msgstr "Exportar as vistas" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Engadir %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Empregar hexadecimal para BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Empregar insercións ignoradas" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "A sintaxe que empregar ao inserir datos" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Lonxitude máxima da busca creada" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Tipo de exportación" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Incluír a exportación nunha transacción" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exportar a hora en UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." @@ -6193,11 +6207,11 @@ msgstr "" "Obrigar a que se empregue unha conexión segura mentres se empregue o " "phpMyAdmin" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Obrigar a conectarse con SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -6209,105 +6223,105 @@ msgstr "" "Ordenación dos elementos dun menú despregábel de chaves alleas; [kbd]content" "[/kbd] son os datos referenciados, [kbd]id[/kbd] é o valor da chave" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Ordenación das chaves alleas" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "Emprégase un menú despregábel de haber un número menor de elementos" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Límite das chaves alleas" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Modo de navegación" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "Personalizar o modo de navegación" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default options" msgid "Customize default options." msgstr "Personalizar as opcións por omisión" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Desenvolvedor" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "Preferencias para os desenvolvedores de phpMyAdmin" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Modo de edición" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "Personalizar o modo de edición" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Exportar o predeterminado" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "Personalizar as opcións de exportación por omisión" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funcionalidades" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Xeral" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "Configuración de algunhas opcións frecuentes" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Opcións de importación por omisión" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "Personalizar as opcións frecuentes de importación por omisión" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importación / exportación" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." @@ -6315,66 +6329,66 @@ msgstr "" "Designar os directorios de importación e exportación e as opcións de " "compresión" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "Opcións de exhibición das bases de datos" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Panel de navegación" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation panel" msgid "Customize appearance of the navigation panel." msgstr "Personalizar a aparencia do panel de navegación" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servidores" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "Opcións de exhibición dos servidores" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "Opcións de exhibición das táboas" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Panel principal" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Office da Microsoft" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Outras opcións principais" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "Configuracións que non cadraban noutra parte" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Títulos de páxina" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6383,19 +6397,19 @@ msgstr "" "[doc@cfg_TitleTable]documentación[/doc] para coñecer as cadeas máximas que " "se poden empregar para obter valores especiais." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Xanela de consultas" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Personalizar as opcións da xanela de consultas" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Seguranza" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6407,25 +6421,25 @@ msgstr "" "Lembre que o phpMyAdmin é simplemente unha interface de usuario e que as " "súas funcionalidades non limitan o MySQL" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Configuración básica" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autenticación" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "Configuración da autenticación" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Configuración do servidor" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6437,17 +6451,17 @@ msgstr "" "Configuración avanzada do servidor; non altere estas opcións a non ser que " "saiba o que está a facer" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "Introduza os parámetros da conexión ao servidor" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Almacenamento da configuración" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -6461,11 +6475,11 @@ msgstr "" "Configurar o phpMyAdmin para ter acceso a funcionalidades adicionais, vexa " "[doc@linked-tables]infraestrutura de táboas ligadas[/doc] na documentación" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Seguimento de cambios" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6473,58 +6487,58 @@ msgstr "" "Seguimento de cambios feitos na base de datos. Require o almacenamento de " "configuración de phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Personalizar as opcións de exportación" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Personalizar as opcións de importación por omisión" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Personalizar o panel de navegación" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Personalizar o panel principal" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Consultas SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Caixa de consultas de SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "Personalizar as ligazóns que aparecen nas caixas de consulta de SQL" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "Preferencias das consultas de SQL" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Inicio" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "Personalizar a páxina de inicio" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Estrutura da base de datos" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 #, fuzzy #| msgid "" #| "Choose which details to show in the database structure (list of tables)" @@ -6534,65 +6548,65 @@ msgstr "" "Escolla os detalles que desexe mostrar na estrutura da base de datos (lista " "de táboas)" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Estrutura da táboa" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 #, fuzzy #| msgid "Settings for the table structure (list of columns)" msgid "Settings for the table structure (list of columns)." msgstr "Configuración da estrutura da táboa (lista de columnas)" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Lapelas" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Escolla como quere que funcionen as lapelas" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Mostrar o esquema relacional" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Tamaño do papel" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Campos de texto" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "Personalizar os campos de entrada de texto" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texto para Texy!" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Personalizar as opcións por omisión" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Avisos" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Desactiva algúns dos avisos mostrados por phpMyAdmin" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6604,15 +6618,15 @@ msgstr "" "Activar a compresión [a@http://gl.wikipedia.org/wiki/Gzip]gzip[/a] nas " "operacións de importación e exportación" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Parámetros extra para iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6624,11 +6638,11 @@ msgstr "" "Se estiver activado, o phpMyAdmin continúa a calcular as consultas de " "afirmacións múltiplas mesmo se unha destas consultas fallase" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignorar os erros de afirmacións múltiplas" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6638,28 +6652,28 @@ msgstr "" "que se achega ao límite de tempo. Isto pode ser unha boa maneira de importar " "ficheiros grandes; porén, pode rachar as transaccións." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Importación parcial: permitir interromper" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Desactivar as comprobacións de chaves exteriores" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Non interromper nos erros de INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Substituír os datos da táboa polos do ficheiro" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6671,62 +6685,62 @@ msgstr "" "Formato por omisión; lembre que esta listaxe depende da localización (base " "de datos, táboa) e só SQL está sempre dispoñíbel" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formato do ficheiro importado" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Utilice a palabra chave LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Nomes das columnas na primeira fileira" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Non importar as fileiras baleiras" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importar as moedas ($5.00 a 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importar as porcentaxes como decimais (12.00% a .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "Número de consultas que se ignoran dende o comezo" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Importación parcial: ignorar as consultas" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non empregar AUTO_INCREMENT cos valores cero" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Estado inicial dos controis desprazábeis" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "Cantas fileiras se poden inserir dunha volta" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Número de fileiras inseridas" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "" #| "Maximum number of characters shown in any non-numeric column on browse " @@ -6737,11 +6751,11 @@ msgstr "" "Número máximo de caracteres mostrados nunha columna non numérica na vista de " "exploración" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Limitar os caracteres das columnas" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6752,11 +6766,11 @@ msgstr "" "FALSO fai que sexa máis doado esquecer saír dos outros servidores cando se " "estea conectado a varios servidores." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Eliminar todas as cookies ao saír" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6768,11 +6782,11 @@ msgstr "" "Definir se se debe lembrar ou non o rexistro previo no modo de autenticación " "mediante cookies." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Lembrar o nome de usuario" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6784,57 +6798,57 @@ msgstr "" "existente e que se elimina cando se feche a xanela do navegador. Recoméndase " "isto para os ambientes que non sexan de confianza." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Almacenar as cookies de rexistro" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "Definir por cantos segundos é válida unha cookie" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Validez das cookies de rexistro" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "Tamaño dobre da área de texto nas columnas tipo LONGTEXT" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Área de texto máis grande para LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" "Número máximo de caracteres empregados cando se mostre unha consulta de SQL" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Lonxitude máxima de SQL que se mostra" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Os usuarios non poden estabelecer un valor máis alto" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of databases displayed in database list" msgid "Maximum number of databases displayed in database list." msgstr "Número máximo de táboas que se mostran na listaxe de bases de datos" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Bases de datos máximas" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " @@ -6846,13 +6860,13 @@ msgstr "" "O número de elementos que desexa mostrar en cada páxina da árbore de " "navegación." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum items in branch" msgid "Maximum items on first level" msgstr "Número máximo de elementos por galla" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6860,11 +6874,11 @@ msgstr "" "O número de elementos que desexa mostrar en cada páxina da árbore de " "navegación." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Número máximo de elementos por galla" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6873,21 +6887,21 @@ msgstr "" "resultados. Se o conxunto de resultados contén máis fileiras, aparecen as " "ligazóns \"Anterior\" e \"Seguinte\"." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Número máximo de fileiras que se mostran" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "Número máximo de táboas que se mostran na listaxe de táboas" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Táboas máximas" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6899,45 +6913,45 @@ msgstr "" "O número de bytes que se permite asignar a un script, p.ex. [kbd]32M[/kbd] " "([kbd]0[/kbd] para non o limitar)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Límite da memoria" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show databases navigation as tree" msgstr "Mostrar o logotipo no panel de navegación" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show logo in navigation panel." msgstr "Mostrar o logotipo no panel de navegación" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Mostrar o logotipo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation panel will point to" msgid "URL where logo in the navigation panel will point to." msgstr "URL ao que apunta o logotipo do panel de navegación" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL da ligazón ao logotipo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -6949,31 +6963,31 @@ msgstr "" "Abrir a páxina ligada na xanela principal ([kbd]principal[/kbd]) ou nunha " "nova ([kbd]nova[/kbd])" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Destino da ligazón do logotipo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the navigation panel" msgid "Display server choice at the top of the navigation panel." msgstr "Mostrar a escolla de servidor na parte superior do panel de navegación" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Mostrar a selección de servidores" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Destino da icona de acceso rápido" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Destino da icona de acceso rápido" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6981,15 +6995,15 @@ msgstr "" "Indica o número mínimo de elementos (táboas, vistas, rutinas e " "acontecementos) para mostrar unha caixa de filtro." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Número mínimo de elementos para mostrar a caixa de filtro" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Número mínimo de bases de datos para mostrar a caixa de filtro" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Group items in the navigation tree (determined by the separator defined " @@ -7001,82 +7015,82 @@ msgstr "" "Agrupar os elementos na árbore de navegación (determinado polo separador " "indicado embaixo)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Agrupar os elementos na árbore" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "Cadea que separa as bases de datos en tres niveis distintos" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Separador da árbore das bases de datos" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "Cadea que separa as táboas en tres niveis distintos" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Separador da árbore de táboas" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Profundidade máxima das táboas" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "Realzar o servidor que estea por baixo do cursor do rato" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Activar o realce" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Barra de navegación das táboas" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Número máximo de táboas usadas recentemente; 0 para desactivar" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Número máximo de táboas usadas recentemente; 0 para desactivar" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Táboas usadas recentemente" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "Estas son as ligazóns Editar, Copiar e Eliminar" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Onde mostrar as ligazóns das fileiras das táboas" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Use natural order for sorting table and database names" msgid "Use natural order for sorting table and database names." @@ -7084,22 +7098,22 @@ msgstr "" "Empregar a ordenación natural para ordenar os nomes das táboas e as bases de " "datos" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Ordenación natural" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, 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:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Barra de navegación das táboas" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, fuzzy #| msgid "use GZip output buffering for increased speed in HTTP transfers" msgid "Use GZip output buffering for increased speed in HTTP transfers." @@ -7107,11 +7121,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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Buffer para a saída de GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -7123,21 +7137,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Ordenación por omisión" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, 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:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Conexións persistentes" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7152,11 +7166,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if a difference between the " @@ -7168,11 +7182,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Advertencia de diferenza entre servidor e biblioteca" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7184,29 +7198,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Advertencia de palabra reservada do MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Como mostrar as lapelas do menú" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Como mostrar diversas ligazóns de acción" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Protexer as columnas binarias" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -7217,21 +7231,21 @@ msgstr "" "rutinas JS para mostrar o historial de consultas (que se perde cando se " "fecha a xanela)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Historial de consultas permanente" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, 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:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Lonxitude do historial de consultas" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, fuzzy #| msgid "Select which functions will be used for character set conversion" msgid "Select which functions will be used for character set conversion." @@ -7239,31 +7253,31 @@ msgstr "" "Escolla as funcións que desexe empregar para a conversión dos conxuntos de " "caracteres" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Motor de recodificación" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Recordar a ordenación da táboa" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Ordenación por omisión" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -7273,81 +7287,81 @@ msgstr "" "Repetir os cabezallos cada X celas; [kbd]0[/kbd] desactiva esta " "funcionalidade" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Repetir os cabezallos" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Edición da grella: activar acción" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Mostrar columna de relación" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "Opcións de exhibición dos servidores" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Directorio de gardado" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, 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:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Orde de autenticación do servidor" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "Déixeo en branco para o predefinido" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Regras de autorización do servidor" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Permitir rexistrarse sen contrasinal" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Permitir o rexistro de root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Valor da sesión" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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." @@ -7355,11 +7369,11 @@ msgstr "" "Nome de HTTP Basic Auth Realm que mostrar cando se faga a autenticación " "mediante HTTP" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Dominio HTTP (Realm)" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -7374,21 +7388,21 @@ msgstr "" "hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Ficheiro de configuración SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, 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:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -7396,11 +7410,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Táboa de marcadores" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -7412,36 +7426,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Táboa de información das columnas" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Comprimir a conexión" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Tipo de conexión" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Contrasinal do usuario de control" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7455,11 +7469,11 @@ msgstr "" "información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" "[/a]" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Usuario de control" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 #, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " @@ -7471,11 +7485,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:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Servidor de control" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 #, fuzzy #| msgid "" #| "An alternate port to connect to the host that holds the configuration " @@ -7490,17 +7504,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Porto de control" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, 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:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7509,15 +7523,15 @@ msgstr "" "Seguidor de erros de PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do " "MySQL[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desactivar o uso de INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Agochar as bases de datos" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma__history" @@ -7529,25 +7543,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:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Táboa do historial de consultas SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, 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:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Nome do servidor" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL de desconexión" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 #, fuzzy #| msgid "" #| "Limits number of table preferences which are stored in database, the " @@ -7559,17 +7573,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:624 +#: libraries/config/messages.inc.php:626 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:625 +#: libraries/config/messages.inc.php:627 #, 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:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7581,13 +7595,13 @@ msgstr "" "Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__pdf_pages[/" "kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "Columnas da área de texto" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7599,17 +7613,17 @@ msgstr "" "Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__table_coords" "[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "Tentar conectarse sen contrasinal" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Conectarse sen contrasinal" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7619,21 +7633,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Mostrar só as bases de datos listadas" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Contrasinal para config auth" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7644,11 +7658,11 @@ msgstr "" "Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__pdf_pages[/" "kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF schema: táboa de páxinas" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7664,12 +7678,12 @@ msgstr "" "completa. Déixeo en branco se non lle interesan. Por omisión: [kbd]phpmyadmin" "[/kbd]" -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Nome da base de datos" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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." @@ -7677,11 +7691,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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Porto do servidor" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7693,11 +7707,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Táboa usada recentemente" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7709,13 +7723,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:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Variábeis" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7727,11 +7741,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Táboa de relacións" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7743,15 +7757,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:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Nome de sesión de rexistro de entrada" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL de rexistro de entrada" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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." @@ -7759,21 +7773,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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Socket do servidor" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Empregar a SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7785,13 +7799,13 @@ msgstr "" "Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__table_coords" "[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, 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:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " @@ -7803,11 +7817,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Mostrar a táboa de columnas" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables' UI preferences across sessions, " @@ -7819,11 +7833,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Táboa de preferencias da interface" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7831,11 +7845,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Engadir DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7843,11 +7857,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Engadir DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7855,21 +7869,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Engadir DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Instrucións que seguir" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -7881,11 +7895,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:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Táboa de seguimento de consultas de SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7893,11 +7907,11 @@ msgstr "" "Se o mecanismo de seguimento crea automaticamente versións das táboas e as " "vistas." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Crear versions automaticamente" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7909,37 +7923,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Empregar a táboa de almacenamento das preferencias" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Usar as táboas" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Empregar a táboa Host" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7951,15 +7965,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Usuario para config auth" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7967,11 +7981,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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Nome longo deste servidor" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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." @@ -7979,11 +7993,11 @@ msgstr "" "Se se lle desexa mostrar un botón \"mostrar todos (os rexistros)\" ao " "usuario" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Permitir que se mostren todas as fileiras" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy #| msgid "" #| "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -8000,15 +8014,15 @@ msgstr "" "configuración; isto non limita a capacidade de executar a mesma orde " "directamente" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Mostrar o formulario para mudar de contrasinal" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Mostrar o formulario para crear bases de datos" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Creation timestamp for all tables" @@ -8017,11 +8031,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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Mostrar marca temporal de creación" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last update timestamp for all tables" @@ -8031,11 +8045,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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Mostrar a última actualización da marca temporal" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last check timestamp for all tables" @@ -8045,11 +8059,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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Mostrar a última revisión da marca temporal" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 #, fuzzy #| msgid "" #| "Defines whether or not type fields should be initially displayed in edit/" @@ -8061,31 +8075,31 @@ msgstr "" "Define se os campos tipo deben ser mostrados inicialmente no modo editar/" "inserir" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Mostrar os tipos de campo" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Mostrar os campos de función" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, 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:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Mostrar consellos" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -8097,15 +8111,15 @@ msgstr "" "Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Mostrar a ligazón a phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Mostrar información detallada do servidor de MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -8113,11 +8127,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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Mostrar as consultas de SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 #, fuzzy #| msgid "" #| "Defines whether the query box should stay on-screen after its submission" @@ -8127,11 +8141,11 @@ msgstr "" "Define se a caixa de consultas debe permanecer en pantalla despois da súa " "execución" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Reter a caixa de consultas" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, fuzzy #| msgid "Allow to display database and table statistics (eg. space usage)" msgid "Allow to display database and table statistics (eg. space usage)." @@ -8139,11 +8153,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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Mostrar as estatísticas" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy #| msgid "" #| "Mark used tables and make it possible to show databases with locked tables" @@ -8153,20 +8167,20 @@ msgstr "" "Marcar as táboas empregadas e permitir que se mostren as bases de datos con " "táboas bloqueadas" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Ignorar as táboas bloqueadas" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" "Na pantalla principal aparece unha advertencia se o Suhosin for detectado." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Aviso de Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -8179,13 +8193,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:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Validez das cookies de rexistro" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 #, fuzzy #| msgid "" #| "Textarea size (columns) in edit mode, this value will be emphasized for " @@ -8198,11 +8212,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:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Columnas da área de texto" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 #, fuzzy #| msgid "" #| "Textarea size (rows) in edit mode, this value will be emphasized for SQL " @@ -8215,39 +8229,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:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Fileiras da área de texto" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 #, 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:784 +#: libraries/config/messages.inc.php:786 #, 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Título por omisión" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 #, 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:788 +#: libraries/config/messages.inc.php:790 #, 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:790 +#: libraries/config/messages.inc.php:792 #, fuzzy #| msgid "" #| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following " @@ -8265,32 +8279,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Directorio de envíos" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, 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:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Empregar buscas na base de datos" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 #, fuzzy #| msgid "" #| "When disabled, users cannot set any of the options below, regardless of " @@ -8302,29 +8316,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Activar a lapela de desenvolvemento na configuración" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Comprobar cal é a última versión" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 #, 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 #, fuzzy #| msgid "" #| "The url of the proxy to be used when retrieving the information about the " @@ -8342,11 +8356,11 @@ msgstr "" "instalado o phpMyAdmin non ten acceso á Internet. O formato é: " "«nome_do_servidor:número_do_porto»" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -8357,23 +8371,23 @@ msgstr "" "Autenticación Básica. De momento non se admite ningún outro tipo de " "autenticación." -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "Nome de usuario" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "O contrasinal para identificarse diante do proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Contrasinal" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -8385,61 +8399,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 #, 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Chave pública do reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 #, 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Chave privada do reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "Porto do servidor" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Consultas executadas" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8461,44 +8475,44 @@ msgstr "Autenticación mediante HTTP" msgid "Signon authentication" msgstr "Autenticación mediante Signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV empregando LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Folla de cálculo de OpenDocument" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Rápido" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Personalizada" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opcións de exportación da base de datos" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV (para datos de MS Excel)" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Texto de OpenDocument" @@ -8728,20 +8742,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Sen contrasinal" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Contrasinal:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Reescribir:" @@ -8879,8 +8893,8 @@ msgstr ", @TABLE@ será o nome da táboa" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "empregar cadeas de formato de tempo. Produciranse transformacións en " @@ -9455,8 +9469,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Pódese atopar documentación e información adicional sobre PBXT na %sPáxina " "de PrimeBase XT %s." @@ -9939,7 +9953,7 @@ msgstr "Saír" msgid "phpMyAdmin documentation" msgstr "Documentación do phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -9999,8 +10013,8 @@ msgstr "O nome de clase «%1$s» é incorrecto; emprégase o predefinido «Nodo #, php-format msgid "Could not include class \"%1$s\", file \"%2$s\" not found" msgstr "" -"Non foi imposíbel incluír a clase «%1$s»; non foi posíbel atopar o ficheiro «%2" -"$s»" +"Non foi imposíbel incluír a clase «%1$s»; non foi posíbel atopar o ficheiro " +"«%2$s»" #: libraries/navigation/Nodes/Node.class.php:786 msgid "Expand/Collapse" @@ -10627,8 +10641,8 @@ msgstr "Reciba a benvida a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Isto débese, posibelmente, a que non se creou un ficheiro de configuración. " "Tal vez queira utilizar %1$ssetup script%2$s para crear un." @@ -10861,7 +10875,7 @@ msgstr "Pór os nomes das columnas na primeira fila:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Servidor:" @@ -11945,22 +11959,22 @@ msgstr "" "[mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Nome de usuario:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nome do usuario" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Contrasinal" @@ -11988,10 +12002,10 @@ msgstr "Identificador do servidor" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Servidor" @@ -12005,38 +12019,38 @@ msgstr "" "host=nome_da_máquina." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Calquera servidor" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Este servidor" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Calquera usuario" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Empregar un campo de texto:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Empregar a táboa Host" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12045,7 +12059,7 @@ msgstr "" "os valores almacenados na táboa Host." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Reescribir" @@ -12276,7 +12290,8 @@ msgid "" msgstr "" "Está a empregar a extensión obsoleta de PHP «mysql», que non pode xestionar " "consultas múltiples. [strong]A execución de varias rutinas almacenadas pode " -"fallar![/strong] Empregue a extensión mellorada «mysqli para evitar problemas." +"fallar![/strong] Empregue a extensión mellorada «mysqli para evitar " +"problemas." #: libraries/rte/rte_routines.lib.php:301 #: libraries/rte/rte_routines.lib.php:1139 @@ -12818,7 +12833,7 @@ msgstr "Ningún" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12887,14 +12902,14 @@ msgstr "Limita o número de conexións simultáneas que pode ter o usuario." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilexios propios das táboas" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12905,7 +12920,7 @@ msgid "Administration" msgstr "Administración" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Privilexios globais" @@ -12916,7 +12931,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilexios propios das bases de datos" @@ -12934,18 +12949,18 @@ msgid "" msgstr "" "Permite engadir usuarios e privilexios sen recargar as táboas de privilexios." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Información sobre o acceso (login)" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Empregar un campo de texto" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 #, fuzzy #| msgid "" #| "An account already exists with the same username but possibly a different " @@ -12957,130 +12972,130 @@ msgstr "" "Xa existe unha conta co mesmo nome de usuario mais con, posibelmente, un " "nome de servidor diferente. Ten a certeza de querer proseguir?" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Non mude o contrasinal" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Modificouse sen problemas o contrasinal de %s." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Revogou os privilexios de %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Engadir un usuario" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Base de datos para o usuario" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "Crear unha base de datos co mesmo nome e conceder todos os privilexios." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Conceder todos os privilexios sobre a base de datos \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuarios que teñen acceso a \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "O usuario foi engadido." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Usuario" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Conceder" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Non se achou ningún usuario." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Calquera" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "específico da base de datos" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "comodín" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "específico da base de datos" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Modificar os privilexios" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Revogar" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Modificar o servidor" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… manter o anterior." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… eliminar o anterior das táboas de usuarios." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… retirarlle todos os privilexios activos ao anterior e eliminalo despois." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13088,123 +13103,123 @@ msgstr "" "… eliminar o anterior das táboas de usuarios e recargar os privilexios " "despois." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Modificar a información de acceso (login) / Copiar o usuario" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Crear un usuario novo cos mesmos privilexios e…" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilexios propios das columnas" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database:" msgid "Add privileges on the following database(s):" msgstr "Engadir privilexios para esta base de datos:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Os caracteres comodín _ e % deberíanse escapar con \\ para podelos usar " "literalmente." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Engadir privilexios para esta táboa:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Eliminar os usuarios seleccionados" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Retirarlles todos os privilexios activos aos usuarios e eliminalos a " "continuación." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Non se escolleu que usuarios eliminar!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "A recargar os privilexios" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Acaba de actualizar os privilexios de %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "A eliminar %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Xa existe o usuario %s!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Privilexios para %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Novo" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Modificar os privilexios:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Vista xeral dos usuarios" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas " "de privilexios do MySQL. O contido destas táboas pode diferir dos " "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Non se atopou o usuario escollido na táboa de privilexios." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Engadiu un usuario novo." @@ -13789,9 +13804,9 @@ msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -"Número de pre-lecturas «aleatorias» iniciadas por InnoDB. Isto acontece cando " -"unha consulta vai examinar unha porción grande dunha táboa mais en orde " -"aleatoria." +"Número de pre-lecturas «aleatorias» iniciadas por InnoDB. Isto acontece " +"cando unha consulta vai examinar unha porción grande dunha táboa mais en " +"orde aleatoria." #: libraries/server_status_variables.lib.php:465 msgid "" @@ -15088,21 +15103,21 @@ msgstr "Tamaño da caché do índice" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tipo de índice:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Usuario:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Comentario:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15458,8 +15473,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o %" -"sScript de configuración%s." +"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o " +"%sScript de configuración%s." #: prefs_manage.php:321 msgid "Save to browser's storage" @@ -15881,8 +15896,8 @@ msgstr "" #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" -"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s%" -"%." +"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s" +"%%." #: libraries/advisory_rules.txt:70 msgid "Slow query rate" @@ -16099,8 +16114,8 @@ msgid "" msgstr "" "Sábese que a caché de consultas mellora moito o desempeño se se configura " "axeitadamente. Actívea configurando {query_cache_size} a un valor de MiB de " -"dous díxitos e configurando {query_cache_type) como «ON». Nota: Se vai " -"empregar memcached, ignore esta recomendación." +"dous díxitos e configurando {query_cache_type) como «ON». Nota: Se " +"vai empregar memcached, ignore esta recomendación." #: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -16178,8 +16193,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "A relación actual da memoria da caché de consultas e o tamaño total da caché " "de consultas é de %s%%. Debería superar o 80%%" @@ -16334,8 +16349,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% de todos os ordenamentos causan táboas temporais; este valor debería " "estar por debaixo do 10%%." diff --git a/po/he.po b/po/he.po index 262b3afe33..b7db7273d1 100644 --- a/po/he.po +++ b/po/he.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-10-22 15:46+0200\n" "Last-Translator: Eyal Visoker \n" "Language-Team: Hebrew \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.0-dev\n" @@ -67,7 +67,7 @@ msgstr "הערות לטבלה:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "עמודה" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "קישורים אל" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "ראשי" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "לא" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -266,14 +266,14 @@ msgid "" msgstr "אחסון התצורה של phpMyAdmin הופסקה. כדי לגלות מדוע יש ללחוץ %sכאן%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "טבלה" @@ -286,7 +286,7 @@ msgid "Rows" msgstr "שורות" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "גודל" @@ -380,9 +380,9 @@ msgstr "מצב" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -575,15 +575,15 @@ msgstr "הוספת פני שטח" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -615,8 +615,8 @@ msgstr "חסרים נתונים בפרמטרים" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "כפי הנראה ניסית להעלות קובץ גדול מדי. נא לפנות ל%s תיעוד %s למצוא דרך לעקיפת " "מגבלה זו." @@ -707,7 +707,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "חזרה" @@ -728,7 +728,7 @@ msgid "General Settings" msgstr "הגדרות כלליות" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "שינוי סיסמא" @@ -803,7 +803,7 @@ msgstr "מידע גרסאות:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "תיעוד" @@ -1079,7 +1079,7 @@ msgstr "הוספת אינדקס" msgid "Edit Index" msgstr "עריכת האינדקס" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "הוספת %s עמודות לאינדקס" @@ -1116,7 +1116,7 @@ msgstr "אתה חייב להוסיף לפחות שדה אחד." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1151,12 +1151,12 @@ msgstr "שם המארח ריק!" msgid "The user name is empty!" msgstr "שם המשתמש ריק!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "הססמה ריקה!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "הססמאות אינן זהות!" @@ -1368,7 +1368,7 @@ msgstr "אנא הוסף לפחות משתנה אחד לסידרה" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1673,7 +1673,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1917,7 +1917,7 @@ msgstr "שאילתת SQL" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2193,7 +2193,7 @@ msgstr "תוכן עניניים" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "התעלמות" @@ -2381,7 +2381,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "הצגת הכול" @@ -2491,7 +2491,7 @@ msgstr "הוספת שדה חדש" msgid "Show hidden navigation tree items." msgstr "הראה רשת" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy msgid "Link with main panel" @@ -3052,16 +3052,16 @@ msgid "Delete" msgstr "מחיקה" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3196,7 +3196,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3636,8 +3636,8 @@ msgstr "שאילתת ה־SQL שלך בוצעה בהצלחה" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא לפנות ל%sתיעוד%s." #: libraries/DisplayResults.class.php:4560 @@ -3675,6 +3675,7 @@ msgstr "עם הנבחרים:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3690,12 +3691,12 @@ msgstr "שינוי" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3894,7 +3895,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "שרת" @@ -3909,11 +3910,11 @@ msgstr "תצוגה" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3929,7 +3930,7 @@ msgstr "מבנה" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3955,9 +3956,9 @@ msgstr "הכנסה" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "הרשאות" @@ -4019,9 +4020,9 @@ msgid "Central columns" msgstr "הוספת/מחיקת עמודות שדה" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "מאגרי נתונים" @@ -4147,7 +4148,7 @@ msgid "Recent" msgstr "איפוס" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4227,7 +4228,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4604,14 +4605,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4867,7 +4868,7 @@ msgstr "מירבי: %s%s" msgid "MySQL said: " msgstr "MySQL אמר: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "הסברת SQL" @@ -4879,7 +4880,7 @@ msgstr "" msgid "Without PHP Code" msgstr "ללא קוד PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "ייצור קוד PHP" @@ -4996,13 +4997,13 @@ msgstr "תיאור" msgid "Use this value" msgstr "שימוש בערך זה" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5425,7 +5426,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5785,78 +5786,90 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "צירוף תוי ציטוט (backquotes) אל שמות טבלאות ושדות" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "צירוף תוי ציטוט (backquotes) אל שמות טבלאות ושדות" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "הצעת מבנה טבלה" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "הצעת מבנה טבלה" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "אחזקת טבלה" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "משפטים" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "שמירה כקובץ" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "חבילת הקידוד של הקובץ:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "תבנית" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "דחיסה" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5866,75 +5879,75 @@ msgstr "דחיסה" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "שדות מוקפים ע\"י" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "הורדת שדות עם" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "החלפת NULL ע\"י" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "שורות מסתיימות ע\"י" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "שורות מסתיימות ע\"י" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "מהדורת Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 #, fuzzy msgid "Database name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 #, fuzzy msgid "Server name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 #, fuzzy msgid "Table name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5945,642 +5958,642 @@ msgstr "תבנית שם קובץ" msgid "Dump table" msgstr "%s טבלאות" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "כלול כותרת טבלה" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "כותרת טבלה" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "כותרת טבלה מומשך" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "מפתח תווית" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "סוג MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "יחסים" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "סוג ייצוא" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 #, fuzzy msgid "Remember file name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "צירוף תוי ציטוט (backquotes) אל שמות טבלאות ושדות" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "יצירת/עדכון/בדיקת תאריכים" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "השתמש בהכנסות מעוכבות" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "יצירת טבלה חדשה על מאגר נתונים %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "הוספת %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "השתמש בהעלמות מהכנסות" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "סוג ייצוא" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 #, fuzzy msgid "Export time in UTC" msgstr "סוג ייצוא" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy msgid "Customize default options." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy msgid "Customize edit mode." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy msgid "Customize default export options." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "ייצור" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 #, fuzzy msgid "Import defaults" msgstr "קבצי ייבוא" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "Customize default common import options." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy msgid "Customize appearance of the navigation panel." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 #, fuzzy msgid "Servers" msgstr "שרת" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Add new field" msgid "Main panel" msgstr "הוספת שדה חדש" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "מספר דף:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "תיעוד" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Documentation" msgid "Authentication settings." msgstr "תיעוד" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Server connection collation" msgid "Enter server connection parameters." msgstr "איסוף חיבור שרת" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Customize export options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy msgid "Customize navigation panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy msgid "Customize main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "מצב" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy msgid "Customize startup page." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "מאגרי נתונים" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "מאגרי נתונים" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "טבלה" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "הצגת תרשים PDF" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "גודל דף" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "השתמש בשדה טקסט" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy msgid "Customize text input fields." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Customize default options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "החלפת נתוני הטבלה עם הקובץ" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Column names" msgid "Column names in first row" msgstr "שמות עמודה" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6588,1111 +6601,1111 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy msgid "Maximum items on first level" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Memory limit" msgstr "גבולות משאבים" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "הראה רשת" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy msgid "Show logo in navigation panel." msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "כותרת טבלה" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "ניתוח טבלה" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "שינוי סדר הטבלה לפי" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "כותרת טבלה" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "שינוי שם טבלה אל" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key default sort order" msgstr "מפתח ראשי נוסף אל %s" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy msgid "Relational display" msgstr "תצוגת יחסים" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 #, fuzzy msgid "Save directory" msgstr "תיקיית בית של נתונים" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "ערך זמן חיבור (Session)" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Documentation" msgid "Authentication method to use." msgstr "תיעוד" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Compress connection to MySQL server." msgstr "נכשל בכניסה לשרת MySQL" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 #, fuzzy msgid "Connection type" msgstr "חיבורים" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "כל שרת מארח" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "כל שרת מארח" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "אין מאגרי נתונים" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "בחירת שרת" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "אל תשנה את הסיסמא" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "מאגר נתונים" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "קוד שרת (ID)" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "ניתוח טבלה" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "משתנים" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "תיקון טבלה" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "בחירת שרת" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "מציג הערות עמודה" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "איחוי טבלה" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "משפטים" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy msgid "Automatically create versions" msgstr "גרסת שרת" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "שימוש בטבלאות" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "ראיית מידע PHP" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy msgid "Show field types" msgstr "ראיית טבלאות" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "הראה רשת" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "הראה שאילתות שלמות" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 #, fuzzy msgid "Show statistics" msgstr "סטטיסטיקת שורה" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ברירת מחדל" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7700,52 +7713,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 msgid "" "The url of the proxy to be used when retrieving the information about the " "latest version of phpMyAdmin or when submitting error reports. You need this " @@ -7753,85 +7766,85 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "שם משתמש:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "סיסמא" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "קוד שרת (ID)" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Enable Zero Configuration mode" @@ -7853,46 +7866,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "תיעוד" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV עבור MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -8142,20 +8155,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "ללא סיסמא" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "סיסמא:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8320,8 +8333,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8839,8 +8852,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9323,7 +9336,7 @@ msgstr "יציאה" msgid "phpMyAdmin documentation" msgstr "תיעוד phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "אפשרויות ייצוא מאגר נתונים" @@ -10013,8 +10026,8 @@ msgstr "ברוך הבא אל %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10278,7 +10291,7 @@ msgstr "שמות עמודה" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11254,7 +11267,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11262,16 +11275,16 @@ msgstr "שם משתמש" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "שם משתמש" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "סיסמא" @@ -11300,10 +11313,10 @@ msgstr "קוד שרת (ID)" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "מארח" @@ -11315,47 +11328,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "כל שרת מארח" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "מקומי" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "מארח זה" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "כל משתמש" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "השתמש בשדה טקסט" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "הקלדה נוספת" @@ -12155,7 +12168,7 @@ msgstr "ללא" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12222,14 +12235,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12240,7 +12253,7 @@ msgid "Administration" msgstr "ניהול" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "הרשאות גלובליות" @@ -12251,7 +12264,7 @@ msgid "Global" msgstr "עולמי" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" @@ -12268,273 +12281,273 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "מידע כניסה" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "השתמש בשדה טקסט" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "אל תשנה את הסיסמא" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "הסיסמא עבור %s שונתה בהצלחה." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "אתה שללת הרשאות עבור %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "הוספת משתמש" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "בדיקת הראשות עבור מאגר נתונים \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy msgid "User has been added." msgstr "שדה %s נמחק" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "משתמש" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "הענקה" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "לא נמצאו משתמשים." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "כל דבר" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "עולמי" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "תו כללי" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "ספציפי למאגר הנתונים" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "עריכת הרשאות" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "שלילה" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "עריכת השורה הבאה" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… שמירת הישן." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… מחיקת הישן מטבלאות המשתמשים." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "הוספת הרשאות למאגר הנתונים הבא" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "הוספת הראשאות לטבלה הבאה" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "הסרת משתמשים שנבחרו" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "טוען מחדש הרשאות" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 #, fuzzy msgid "The selected users have been deleted successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "אתה עדכנת הרשאות עבור %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "מוחק %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "הרשאות" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "עריכת הרשאות" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "סקירת משתמשים" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "משתמש חדש נוסף." @@ -14316,22 +14329,22 @@ msgstr "שם אינדקס:" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "סוג אינדקס:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "משתמש:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy msgid "Comment:" msgstr "הערות" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15358,8 +15371,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15488,8 +15501,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/hi.po b/po/hi.po index 20828459f5..3b40d92519 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-02-04 18:16+0200\n" "Last-Translator: Nisarg Jhaveri \n" "Language-Team: Hindi \n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2-dev\n" @@ -67,7 +67,7 @@ msgstr "तालिका टिप्पणी:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "स्तम्भ" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "के लिए लिंक" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "प्राथमिक" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "ना" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -261,14 +261,14 @@ msgid "" msgstr "phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया है। %sजानें क्यों%s ।" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "टेबल" @@ -281,7 +281,7 @@ msgid "Rows" msgstr "रो" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "आकार" @@ -374,9 +374,9 @@ msgstr "स्थिति" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -572,15 +572,15 @@ msgstr "ज्यामिति जोडें" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -614,11 +614,11 @@ msgstr "अपूर्ण पैरामीटर" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %" -"sdocumentation%s पढ़ें." +"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके " +"%sdocumentation%s पढ़ें." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -699,7 +699,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "वापस" @@ -722,7 +722,7 @@ msgid "General Settings" msgstr "जनरल सेटिंग्स" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "पासव्रड बदलिये" @@ -803,7 +803,7 @@ msgstr "संस्करण की जानकारी:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "प्रलेखन" @@ -1073,7 +1073,7 @@ msgstr "अनुक्रमणिका जोड़ें" msgid "Edit Index" msgstr "अनुक्रमणिका सम्पादित करें" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1111,7 +1111,7 @@ msgstr "आपको कम से कम एक स्तंभ प्रदर #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1148,12 +1148,12 @@ msgstr "मेज़बान का नाम (hostname) खाली है!" msgid "The user name is empty!" msgstr "प्रयोगकर्ता का नाम खाली है!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "कूटशब्द (password) खाली है!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "कूटशब्द (password) समान नहीं हैं!" @@ -1357,7 +1357,7 @@ msgstr "कृपया, श्रृंखला में कम से कम #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1657,7 +1657,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1880,7 +1880,7 @@ msgstr "क्वॅरी बॉक्स दिखाएँ" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2156,7 +2156,7 @@ msgstr "डॅटा बिन्दु सामग्री" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "उपेक्षा करें" @@ -2362,7 +2362,7 @@ msgstr "कॉलम को दिखने / छुपाने के लि #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "सभी दिखाएँ" @@ -2472,7 +2472,7 @@ msgstr "अनुक्रमणिका जोड़" msgid "Show hidden navigation tree items." msgstr "बाईं फ्रेम में लोगो देखियें" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main frame" @@ -2988,16 +2988,16 @@ msgid "Delete" msgstr "मिटाएँ" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3134,7 +3134,7 @@ msgid "During current session" msgstr "वर्तमान त्रुटि को छोड़" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3570,8 +3570,8 @@ msgstr "आपकी SQL कुएरी सफलता के साथ पू #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें." #: libraries/DisplayResults.class.php:4560 @@ -3609,6 +3609,7 @@ msgstr "चुने हुओं को:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3624,12 +3625,12 @@ msgstr "बदलें" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3832,7 +3833,7 @@ msgid "" msgstr "सूचकांक %1$s और %2$s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "सर्वर" @@ -3847,11 +3848,11 @@ msgstr "दृश्य" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3867,7 +3868,7 @@ msgstr "संरचना" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3893,9 +3894,9 @@ msgstr "इनसर्ट" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "प्रिविलेज" @@ -3957,9 +3958,9 @@ msgid "Central columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "डाटाबेस" @@ -4085,7 +4086,7 @@ msgid "Recent" msgstr "रीसेट" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4165,7 +4166,7 @@ msgstr "छँटाई" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4548,14 +4549,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4813,7 +4814,7 @@ msgstr "अधिकतम: %s%s" msgid "MySQL said: " msgstr "MySQL ने कहा: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL की व्याख्या" @@ -4825,7 +4826,7 @@ msgstr "SQL की व्याख्या को छोड़ जाना" msgid "Without PHP Code" msgstr "php कोड के बिना" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP Code बनाओ" @@ -4946,13 +4947,13 @@ msgstr "वर्णन" msgid "Use this value" msgstr "इस मान का उपयोग करें" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5378,7 +5379,7 @@ msgid "Set value: %s" msgstr "मान निर्धारित: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "मूलभूत मान को बहाल" @@ -5798,37 +5799,49 @@ msgstr "टैब जो सूची में प्रवेश करते msgid "Default table tab" msgstr "डिफ़ॉल्ट सूची टैब" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "टेबल और फील्ड के नाम को backquotes से बंद करें" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "टेबल और फील्ड के नाम को backquotes से बंद करें" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "टेबल संरचना का प्रस्ताव" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "टेबल संरचना का प्रस्ताव" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "सर्वर लिस्टिंग को ड्रॉपडाउन के बजाय सूची की तरह देखियें." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "सर्वर सूची की तरह देखें" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "कई टेबल के रखरखाव को अक्षम करे" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5838,39 +5851,39 @@ msgid "" "limit)." msgstr "एक स्क्रिप्ट को चलने की अवधि सेकंड में दें, (शून्य - कोई सीमा नहीं के लिए)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "अधिकतम निष्पादन समय" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add constraints" msgid "Use %s statement" msgstr "शर्तें जोडें" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "फ़ाइल के रूप में सहेजें" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "फ़ाइल का चरित्र सेट" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "प्रारूप" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "संक्षिप्तीकरण" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5880,70 +5893,70 @@ msgstr "संक्षिप्तीकरण" msgid "Put columns names in the first row" msgstr "काँलम नाम प्रथम रो में" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Column names" msgid "Columns enclosed with" msgstr "कोलम के नाम" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Column names" msgid "Columns escaped with" msgstr "कोलम के नाम" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "शून्य की जगह पर" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "CRLF चरित्र को कोलम से हटायें" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "काँलम समाप्त होता है" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "लाईन समाप्त होता है" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "एक्सेल संस्करण" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "डेटाबेस नाम टेम्पलेट" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "सर्वर नाम टेम्पलेट" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "टेबल नाम टेम्पलेट" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5952,143 +5965,143 @@ msgstr "टेबल नाम टेम्पलेट" msgid "Dump table" msgstr "टेबल दुम्प करें" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "टैब शीर्षक में शामिल" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "टेबल शीर्षक" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "टेबल शीर्षक निरंतर" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "लेबल कुंजी" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME प्रकार" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "संबंध" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "निर्यात प्रकार" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "सर्वर पर सेव करें" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "मौजूदा फ़ाइल अधिलेखित करें" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "टेम्पलेट फ़ाइल नाम याद रखें" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "टेबल और फील्ड के नाम को backquotes से बंद करें" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL संगतता मोड" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "निर्माण/अद्यतन/जाँच दिनांक" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "विलंबित इनसर्टस" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "निष्क्रिय विदेशी कुंजी चेक" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export views as tables" msgstr "\"%s\" डेटाबेस से रो निर्यात" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s जोडें" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "BLOB के लिए hexadecimal का प्रयोग करें" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "आवेषण उपेक्षा का प्रयोग करें" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "डेटा दल्तें समय वाक्यविन्यास का उपयोग करें" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "क्वेरी के अधिकतम लंबाई" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "निर्यात प्रकार" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "एक सौदे में बंद निर्यात" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "UTC में निर्यात समय" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "phpMyAdmin का प्रयोग करते समय सुरक्षित कनेक्शन रखें" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "SSL कनेक्शन रखें" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -6100,174 +6113,174 @@ msgstr "" "एक विदेशी कुंजी ड्रॉपडाउन बॉक्स में आइटम्स के लिए सॉर्ट क्रम; सामग्री संदर्भित डेटा, आईडी है " "महत्वपूर्ण मूल्य है" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "विदेशी कुंजी ड्रॉपडाउन क्रम" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "अगर कम आइटम मौजूद हैं एक ड्रॉपडाउन का उपयोग किया जाएगा" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "विदेशी कुंजी सीमा" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "ब्राउज़ करें" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "ब्राउज़ मोड अनुकूलित" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default options" msgid "Customize default options." msgstr "डिफ़ॉल्ट विकल्प अनुकूलित" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "डेवलपर" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "phpMyAdmin डेवलपर के लिए सेटिंग्स" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "संपादन मोड" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "संपादन मोड अनुकूलित" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "निर्यात डिफ़ॉल्ट" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "डिफ़ॉल्ट निर्यात विकल्पों को अनुकूलित करें" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "विशेषताएँ" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "सामान्य" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "कुछ सामान्यतः प्रयोग किया जाता विकल्प सेट" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "आयात" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "डिफ़ॉल्ट आयात विकल्पों को अनुकूलित करें" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "आयात / निर्यात" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "आयात और निर्यात निर्देशिका और संपीड़न विकल्प सेट करें" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "डेटाबेस प्रदर्शन विकल्प" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "नेविगेशन फ्रेम" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "नेविगेशन फ्रेम की दिखावट को अनुकूलित करें" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "सर्वर" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "सर्वर प्रदर्शन विकल्प" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "टेबल प्रदर्शन विकल्प" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "मुख्य फ्रेम" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "माइक्रोसॉफ्ट ऑफिस" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "अन्य मुख्य सेटिंग्स" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "सेटिंग्स जो कहीं भी फिट नहीं थी" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "पृष्ठ शीर्षक" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6275,19 +6288,19 @@ msgstr "" "निर्दिष्ट ब्राउज़र की शीर्षक पट्टी पाठ. [doc@cfg_TitleTable]documentation[/doc] " "जादू स्ट्रिंग को विशेष मान पाने के लिए इस्तेमाल किया जा सकता है." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "क्वरी पेज" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "क्वेरी विंडो विकल्पों को अनुकूलित करें" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "सुरक्षा" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6298,25 +6311,25 @@ msgid "" msgstr "" "कृपया याद रखें phpMyAdmin एक अंतरफलक है और इसकी विशेषताओं MySQL को सीमित नहीं करती" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "मूल सेटिंग्स" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "प्रमाणीकरण" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "प्रमाणीकरण सेटिंग्स" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "सर्वर विन्यास" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6326,17 +6339,17 @@ msgid "" "what they are for." msgstr "उन्नत सर्वर विन्यास,अगर आप इनके बारे मैं नहीं जानते तो इन्हें मत बदलें" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "सर्वर कनेक्शन पैरामीटर दाखिल करें" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "विन्यास भंडारण" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -6350,140 +6363,140 @@ msgstr "" "phpMyAdmin विन्यास भंडारण अतिरिक्त सुविधाओं तक पहुँच हासिल करने के लिए कॉन्फ़िगर करें, " "ज्यादा जानकारी के लिए [doc@linked-tables]phpMyAdmin configuration storage[/doc]" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "परिवर्तन ट्रैकिंग" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" "डेटाबेस ट्रैकिंग में किए गए परिवर्तन. phpMyAdmin विन्यास भंडारण की आवश्यकता होती है." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "निर्यात विकल्पों को अनुकूलित करें" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "आयात विकल्पों को अनुकूलित करें" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "नेविगेशन फ्रेम को अनुकूलित करें" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL क्वरी" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL क्वरी बॉक्स" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "SQL क्वरी बॉक्स में दिखाए गए लिंक्स को अनुकूलित करें" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "SQL क्वेरी सेटिंग्स" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "स्टार्टअप" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "स्टार्टअप पेज अनुकूलित करें" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "यूसर के लिए डेटाबेस" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "यूसर के लिए डेटाबेस" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "टैब्स" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "चुनें कि आप टैब्स काम करना चाहते हैं" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "PDF स्कीमा दिखाओ" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "पेपर आकार" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "पाठ फ़ील्ड" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "टेक्स्ट फ़ील्ड जानकारी को अनुकूलित करें" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! टेक्स्ट" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "डिफ़ॉल्ट विकल्प अनुकूलित" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "चेतावनी" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "phpMyAdmin द्वारा दिखाए चेतावनी निष्क्रिय करें" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6495,15 +6508,15 @@ msgstr "" "आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/Gzip]" "gzip[/a]" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv के लिए अतिरिक्त पैरामीटर" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6514,11 +6527,11 @@ msgid "" msgstr "" "अगर सक्रिय है, phpMyAdmin एकाधिक बयान प्रश्नों कंप्यूटिंग जारी भले ही एक प्रश्न का असफल" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "कई बयान त्रुटियों उपेक्षा" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6527,28 +6540,28 @@ msgstr "" "मामले लिपि में आयात की अनुमति दें अंतरायन का पता लगाता है यह समय सीमा के करीब है. यह " "अच्छा करने के लिए बड़ी फ़ाइलों आयात तरीका हो, लेकिन यह लेनदेन तोड़ सकते हो सकता है." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "आंशिक आयात दखल की अनुमति" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "निष्क्रिय विदेशी कुंजी चेक" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "इन्सर्ट त्रुटी मैं मत छोड़ों" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "फाइल, टेबल डेटा की जगह" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6560,62 +6573,62 @@ msgstr "" "डिफ़ॉल्ट स्वरूप; पता होना चाहिए कि इस सूची में स्थान (डेटाबेस, तालिका) पर निर्भर करता है " "और केवल SQL हमेशा उपलब्ध है" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "आयात की गई फ़ाइल का प्रारूप" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "कीवर्ड LOCAL का प्रयोग" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "कोलम के नाम पहली रो में" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "खाली रोयाँ आयात नहीं" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "आयात मुद्राओं ($5.00 से 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "प्रतिशत को उचित दशमलव के रूप में आयात करें" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "प्रश्नों की संख्या शुरू से ही छोड़ने के लिए" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "आंशिक आयात: क्वरीों को छोड़" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "शुन्य मूल्य के लिए AUTO_INCREMENT का प्रयोग न करें" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "स्लाइडर्स के लिए प्रारंभिक अवस्था" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "एक समय पर कितनी पक्न्तियों को डाला जा सकता है" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "डाली गयी पक्न्तियों" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "" #| "Maximum number of characters shown in any non-numeric column on browse " @@ -6625,11 +6638,11 @@ msgid "" msgstr "" "किसी भी गैर सांख्यिक स्तंभ में दिखाया गया है अक्षरों की अधिकतम संख्या पर विचार ब्राउज़" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "काँलम वर्ण सीमा" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6638,11 +6651,11 @@ msgstr "" "अगर TRUE, लोगौत सभी सर्वर की कुकी हटा देगा| अगर FALSE, लोगौत सिर्फ वर्तमान सर्वर से " "होगा| इसे FALSE रखने से सर्वर लोगौत भूल सकते हैं, जब आप ज्यादा सर्वर से कनेक्ट हों।" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "लॉगआउट पर सभी कुकीज़ हटाना" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6653,11 +6666,11 @@ msgid "" msgstr "" "परिभाषित करें कि पिछले लॉगइन या याद किया जाना चाहिए कुकी प्रमाणीकरण मोड में या नहीं" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "याद यूसर नाम" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6668,78 +6681,78 @@ msgstr "" "चाहिए. 0 मतलब का मूलभूत है कि यह केवल मौजूदा सत्र के लिए रखा जाएगा, और जैसे ही आप " "ब्राउज़र विंडो को बंद हटा दिया जाएगा. इस गैर विश्वसनीय वातावरण के लिए सिफारिश की है." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "लॉगिन कुकी भंडार" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "परिभाषित करें की एक लोगिन कुकी कितने समय थक मान्य है" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "लॉगिन कुकी वैधता" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "LONGTEXT काँलम के लिए textarea का आकर दुगना करें" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEST के लिए बड़ा आकर" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "SQL प्रदर्शित अधिकतम अक्षर" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "SQL प्रदर्शित अधिकतम लम्बाई" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "यूसरओं एक उच्च मूल्य निर्धारित नहीं कर सकते" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." msgstr "प्रदर्शित टेबल की अधिकतम संख्या" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "डेटाबेस की अधिकतम संख्या" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "अस्थायी सोर्ट फ़ाइलों के लिए अधिकतम आकार" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6747,21 +6760,21 @@ msgstr "" "परिणाम सेट में से प्रदर्शित रों की संख्या, अगर सेट में ज्यादा रो हैं तो \"पिछले\" और \"अगला" "\" लिंक दिखाएँ जायेंगे।" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "प्रदर्शित रो की अधिकतम संख्या" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "प्रदर्शित टेबल की अधिकतम संख्या" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "अधिकतम सारणी" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6772,75 +6785,75 @@ msgid "" msgstr "" "एक लिपि को कितने बाइट्स दिए जायेंगे, eg. [kbd]32M[/kbd], [kbd]0[/kbd] मतलब असीमित" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "स्मृति सीमा" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "बाईं फ्रेम में लोगो देखियें" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "बाईं फ्रेम में लोगो देखियें" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "लोगो प्रदर्शन करें" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to." msgstr "नेविगेशन फ्रेम में URL यहाँ इंगित" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "लोगो लिंक URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "लोगो लिंक लक्ष्य" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "बाएं फ्रेम के शीर्ष पर सर्वर विकल्प" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "सर्वर चयन प्रदशित करें" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "त्वरित पहुँच आइकन के लिए लक्ष्य" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "त्वरित पहुँच आइकन के लिए लक्ष्य" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "" @@ -6848,19 +6861,19 @@ msgid "" "display a filter box." msgstr "टेबल फिल्टर बॉक्स प्रदर्शित करने के लिए टेबल की न्यूनतम संख्या" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of items to display the filter box" msgstr "टेबल फिल्टर बॉक्स प्रदर्शित करने के लिए टेबल की न्यूनतम संख्या" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of databases to display the database filter box" msgstr "टेबल फिल्टर बॉक्स प्रदर्शित करने के लिए टेबल की न्यूनतम संख्या" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " @@ -6871,137 +6884,137 @@ msgid "" msgstr "" "केवल प्रकाश संस्करण, एक पेड़ में प्रदर्शित डेटाबेस (नीचे परिभाषित विभाजक द्वारा निर्धारित)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "स्ट्रिंग जो डेटाबेस को अलग स्तरों में बांटती है" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "डेटाबेस स्तर अलगानेवाला" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "स्ट्रिंग जो टेबल को अलग स्तरों में बांटती है" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "टेबल स्तर अलगानेवाला" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "अधिकतम टेबल स्तर गहराई" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "कर्सर के तहत सर्वर पर प्रकाश डाला" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "उजागर सक्षम" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Iconic navigation bar" msgid "Enable navigation tree expansion" msgstr "प्रतिष्ठित नेविगेशन पट्टी" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "प्रदर्शित टेबल की अधिकतम संख्या" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "प्रदर्शित टेबल की अधिकतम संख्या" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "लापता टेबलएं" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "ये हैं संपादित करें, इनलाइन संपादन, प्रतिलिपि बनाएँ और हटाएँ लिंक" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "प्राकृतिक आदेश" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, fuzzy #| msgid "Use only icons, only text or both" msgid "Use only icons, only text or both." msgstr "उपयोग चिह्न, पाठ या दोनों" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Iconic navigation bar" msgid "Table navigation bar" msgstr "प्रतिष्ठित नेविगेशन पट्टी" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip आउटपुट बफरिंग" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "डिफ़ॉल्ट सॉर्ट क्रम" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Use persistent connections to MySQL databases" msgid "Use persistent connections to MySQL databases." msgstr "MySQL के लिए लगातार कनेक्शन का उपयोग" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "के लिए" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7015,11 +7028,11 @@ msgstr "" "डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर " "phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -7029,11 +7042,11 @@ msgid "" "MySQL library and server is detected." msgstr "अगर mcrypt कुकी प्रमाणीकरण अक्षम है डिफ़ॉल्ट चेतावनी रदर्शित होता अक्षम है" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7046,82 +7059,82 @@ msgstr "" "डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर " "phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका" -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 #, fuzzy #| msgid "Allow to display all the rows" msgid "How to display the menu tabs" msgstr "सभी रोयों को प्रदर्शित करने की अनुमति" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "बाइनरी काँलम की रक्षा" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "स्थायी क्वरी इतिहास" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, fuzzy #| msgid "How many queries are kept in history" msgid "How many queries are kept in history." msgstr "इतिहास में कितने क्वरी रखने है" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "क्वरी इतिहास लंबाई" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "टेबल का नाम बदलें" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "डिफ़ॉल्ट सॉर्ट क्रम" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -7129,110 +7142,110 @@ msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "हर सेल्स बाद हेडर दोहराना, [kbd]0[/kbd] इस सुविधा को निष्क्रिय करें" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "हेडर दोहराना" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "संबंधपरक प्रदर्शन स्तंभ" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "सर्वर प्रदर्शन विकल्प" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "निर्देशिका बचाना" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "इस्तेमाल नहीं तो खाली छोड़ें" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "होस्ट प्राधिकरण आदेश" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "डिफ़ॉल्ट के लिए खाली छोड़ें" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "होस्ट प्राधिकरण नियम" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "पासवर्ड के बिना प्रवेश की अनुमति" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "रूट लॉगिन की अनुमति" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "सत्र मूल्य" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "http दायरे" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey config फाइल" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "प्रमाणीकरण विधि उपयोग करने के लिए" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "प्रमाणीकरण पद्धति का उपयोग" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -7243,11 +7256,11 @@ msgid "" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" 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[/" @@ -7258,35 +7271,35 @@ msgid "" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "काँलम जानकारी टेबल" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "MySQL सर्वर कनेक्शन संक्षिप्त करना" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "कनेक्शन संक्षिप्त करना" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "कनेक्शन के प्रकार" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "यूसर पासवर्ड नियंत्रण" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7299,54 +7312,54 @@ msgstr "" "एक विशेष MySQL सर्वर सीमित अनुमति के साथ, ज्यादा जानकारी के लिए [a@http://wiki." "phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "नियंत्रण यूसर" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Control user" msgid "Control host" msgstr "नियंत्रण यूसर" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control user" msgid "Control port" msgstr "नियंत्रण यूसर" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA का उपयोग असमर्थ करें" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "डेटाबेस छिपाना" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7358,41 +7371,41 @@ msgstr "" "अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL इतिहास क्वेरी टेबल" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, fuzzy #| msgid "Hostname where MySQL server is running" msgid "Hostname where MySQL server is running." msgstr "होस्ट नाम जहाँ MySQL सर्वर चल रहा है" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "सर्वर होस्ट नाम" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "लॉगआउट URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximal number of table preferences to store" msgstr "प्रदर्शित टेबल की अधिकतम संख्या" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7402,13 +7415,13 @@ msgid "" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns 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]" @@ -7418,38 +7431,38 @@ msgid "" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "पासवर्ड के बिना कनेक्ट करने का प्रयास" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "पासवर्ड के बिना कनेक्ट करें" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "केवल सूचीबद्ध डेटाबेस दिखाएँ" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, fuzzy #| msgid "Leave empty if not using config auth" msgid "Leave empty if not using config auth." msgstr "अगर विन्यास प्राधिकरण का उपयोग नहीं तो खाली छोड़ दें" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "विन्यास प्राधिकरण के लिए पासवर्ड" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7458,33 +7471,33 @@ msgid "" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF स्कीमा: पृष्ठों टेबल" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "डेटाबेस नाम" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "सर्वर" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" @@ -7494,13 +7507,13 @@ msgid "" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" 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[/]" @@ -7510,13 +7523,13 @@ msgid "" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "प्रक्रियां" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7526,45 +7539,45 @@ msgid "" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "संबंध टेबल" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "signon सत्र नाम" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "सर्वर गर्तिका" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL का उपयोग" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7574,11 +7587,11 @@ msgid "" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7588,11 +7601,11 @@ msgid "" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "काँलम टेबल दिखाएँ" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" @@ -7601,33 +7614,33 @@ msgid "" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "यूसर वरीयताओं की भंडारण टेबल" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "ड्रॉप डेटाबेस जोड़ें" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "ड्रॉप टेबल जोड़ें" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7635,19 +7648,19 @@ msgstr "" "क्या DROP VIEW IF EXISTS बयान पहली लाइन की तरह जोड़े जायेगा, जब एक दृश्य का लोग बन " "रहा है।" -#: libraries/config/messages.inc.php:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "DROP VIEW जोडें" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "बयान ट्रैक करने के लिए" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7659,21 +7672,21 @@ msgstr "" "अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL क्वरी ट्रैकिंग टेबल" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "स्वतः संस्करण बनाना" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" @@ -7683,37 +7696,37 @@ msgid "" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "यूसर वरीयताओं की भंडारण टेबल" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "टेबल का उपयोग करो" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "होस्ट टेबल का उपयोग करें" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" @@ -7723,122 +7736,122 @@ msgid "" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "विन्यास प्राधिकरण के लिए यूसर" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "इस सर्वर का विवरण, होस्ट नाम दिखने के लिए खाली छोडें।" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "इस सर्वर का वाचाल नाम" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "सभी रोयों को प्रदर्शित करने की अनुमति" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "पासवर्ड बदलने के फार्म" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "डेटाबेस बनाने का फार्म" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show more actions" msgid "Show Creation timestamp" msgstr "अधिक क्रियाएँ दिखाओ" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy #| msgid "Show master status" msgid "Show Last check timestamp" msgstr "मास्टर अवस्था" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "फ़ील्ड प्रकार दिखाएँ" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "ग्रिड दिखाओ" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "phpinfo() लिंक दिखाएँ" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "विस्तृत mysql सर्वर जानकारी" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -7846,51 +7859,51 @@ msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "क्या phpMyAdmin द्वारा उत्पन SQL प्रशन प्रदर्शित करनी है" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "SQL प्रशन दिखाएँ" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" msgstr "क्वरी बॉक्स छुपा" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "आँकड़े दिखाएँ" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "बंद टेबलओं को छोड़" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 #, fuzzy #| msgid "A warning is displayed on the main page if Suhosin is detected" msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "अगर Suhosin का पता चलता है तो चेतावनी दी जाएगी" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin चेतावनी" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7904,61 +7917,61 @@ msgstr "" "डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर " "phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "लॉगिन कुकी वैधता" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "क्षेत्र रोयाँ" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 #, 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:784 +#: libraries/config/messages.inc.php:786 #, 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "डिफ़ॉल्ट शीर्षक" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 #, 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:788 +#: libraries/config/messages.inc.php:790 #, 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7966,58 +7979,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "विश्वसनीय proxies की सूची IP अनुमति / इनकार के लिए" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "अपलोड निर्देशिका" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, fuzzy #| msgid "Allow for searching inside the entire database" msgid "Allow for searching inside the entire database." msgstr "संपूर्ण डेटाबेस के अंदर तलाश करने के लिए अनुमति" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "डेटाबेस खोज का प्रयोग" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "सेटिंग्स में डेवलपर टैब को सक्रिय करें" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "नवीनतम संस्करण के लिए जाँच" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 #, 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -8025,34 +8038,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "यूसर नाम" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "पासवर्ड" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -8064,53 +8077,53 @@ msgstr "" "आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/Gzip]" "gzip[/a]" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "सर्वर" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8132,46 +8145,46 @@ msgstr "HTTP प्रमाणीकरण" msgid "Signon authentication" msgstr "signon प्रमाणीकरण" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Spreadsheet" msgstr "दस्तावेज़ खोलें" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "तुरंत" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "कस्टम" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "डेटाबेस निर्यात विकल्प" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV for MX Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Text" @@ -8423,20 +8436,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "पासवर्ड नहीं है" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "पासव्रड:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8579,8 +8592,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -9092,8 +9105,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9589,7 +9602,7 @@ msgstr "लोग औट" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin दस्तावेज़ीकरण" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -10275,11 +10288,11 @@ msgstr "%s मे स्वागत है" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2" -"$s का उपयोग करें." +"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script" +"%2$s का उपयोग करें." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10534,7 +10547,7 @@ msgstr "काँलम नाम प्रथम रो में" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11523,7 +11536,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11531,16 +11544,16 @@ msgstr "यूसर नेम" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "यूसर नेम" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "पासवर्ड" @@ -11570,10 +11583,10 @@ msgstr "सर्वर आईडी" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "होस्ट" @@ -11585,47 +11598,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "कोई भी होस्ट" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "इस होस्ट" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "कोई भी यूसर" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "पाठ फ़ील्ड" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "होस्ट टेबल का उपयोग करें" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "फिर से लिखें" @@ -12462,7 +12475,7 @@ msgstr "नहीं" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12529,14 +12542,14 @@ msgstr "यूसर के समकालिक कनेक्शन की #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "केवल टेबल के प्रिविलेज" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12547,7 +12560,7 @@ msgid "Administration" msgstr "एडमिनिस्ट्रेशन" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "वैश्विक प्रिविलेज" @@ -12558,7 +12571,7 @@ msgid "Global" msgstr "वैश्विक" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "केवल डाटाबेस के प्रिविलेज" @@ -12575,270 +12588,270 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "प्रवेश जानकारी" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "पासवर्ड मत बदलिये" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s का पासवर्ड सफलतापूर्वक बदल गया।" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "आपने %s के privileges वापस ले लिया." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "नया प्रयोक्ता जोड़ें" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "यूसर के लिए डेटाबेस" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "एक ही नाम के साथ डेटाबेस बनाएँ और सभी विशेषाधिकारों को अनुदान।" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "वाइल्डकार्ड नाम (यूसरनाम\\_%) पर सभी विशेषाधिकार अनुदान।" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" डेटाबेस पर सभी विशेषाधिकारों का अनुदान करें।" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "द्रश्य %s रद्द दिया गया है." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "यूजर" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "अनुदान" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "कोई यूसर नहीं।" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "कोई" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "वैश्विक" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "डेटाबेस-विशेष" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "वाइल्डकार्ड" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "डेटाबेस-विशेष" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "प्रिविलेज एडिट करें" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "वापस लो" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "सर्वर को संपादित करें" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… पुराने रखना।" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… पुराने यूसर को टेबल से हटाना।" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "केवल कोलम के प्रिविलेज" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "चयनित यूसर हटायें" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा।" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "विशेषाधिकार पुनः लोड" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "चयनित यूसर को सफलतापूर्वक हटा दिया गया है।" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "उपयोगकर्ता %s पहले से मौजूद है!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "प्रिविलेज" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "प्रिविलेज एडिट करें" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "यूसर सिंहावलोकन" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया।" @@ -14647,23 +14660,23 @@ msgstr "सूचकांक कैश आकार" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "इन्डेक्स प्रकार" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "उपयोगकर्ता :" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "टिप्पणी" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15719,8 +15732,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15853,8 +15866,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/hr.po b/po/hr.po index c674f39477..ba944afc79 100644 --- a/po/hr.po +++ b/po/hr.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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-03-28 11:02+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian \n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.9-dev\n" #: changelog.php:36 license.php:28 @@ -71,7 +71,7 @@ msgstr "Komentari tablice:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "Stupac" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "Povezano s" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "Primarni" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "Ne" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -272,14 +272,14 @@ msgstr "" "razloge, kliknite %sovdje%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tablica" @@ -292,7 +292,7 @@ msgid "Rows" msgstr "Redaka" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Veličina" @@ -392,9 +392,9 @@ msgstr "Stanje" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -596,15 +596,15 @@ msgstr "Dodaj geometriju" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -639,14 +639,14 @@ msgstr "Dovrši umetanja" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %" -"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." +"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " +"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -736,7 +736,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Nazad" @@ -760,7 +760,7 @@ msgid "General Settings" msgstr "Opće osobine relacija" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Promijeni lozinku" @@ -854,7 +854,7 @@ msgstr "Podaci o verziji" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentacija" @@ -1132,7 +1132,7 @@ msgstr "Dodaj Indeks" msgid "Edit Index" msgstr "Uredi indeks" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1170,7 +1170,7 @@ msgstr "Morate dodati najmanje jedno polje." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1207,12 +1207,12 @@ msgstr "Ime domaćina je prazno!" msgid "The user name is empty!" msgstr "Korisničko ime je prazno!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" @@ -1433,7 +1433,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1740,7 +1740,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1991,7 +1991,7 @@ msgstr "SQL upit" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2267,7 +2267,7 @@ msgstr "Veličina pokazatelja podataka" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignoriraj" @@ -2459,7 +2459,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Prikaži sve" @@ -2573,7 +2573,7 @@ msgstr "Indeksi" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u lijevom okviru" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main frame" @@ -3146,16 +3146,16 @@ msgid "Delete" msgstr "Izbriši" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3293,7 +3293,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3741,8 +3741,8 @@ msgstr "Vaš SQL upit uspješno je izvršen" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." @@ -3781,6 +3781,7 @@ msgstr "S odabirom:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3796,12 +3797,12 @@ msgstr "Promijeni" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -4009,7 +4010,7 @@ msgstr "" "Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Poslužitelj" @@ -4024,11 +4025,11 @@ msgstr "Prikaz" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -4044,7 +4045,7 @@ msgstr "Strukturu" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4070,9 +4071,9 @@ msgstr "Umetni" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegije" @@ -4134,9 +4135,9 @@ msgid "Central columns" msgstr "Dodaj/Izbriši stupce polja" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Baze podataka" @@ -4262,7 +4263,7 @@ msgid "Recent" msgstr "Povrat" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4341,7 +4342,7 @@ msgstr "Preslagivanje" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4727,14 +4728,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4991,7 +4992,7 @@ msgstr "Najv: %s%s" msgid "MySQL said: " msgstr "MySQL je poručio: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Objasni SQL" @@ -5003,7 +5004,7 @@ msgstr "Preskoči Objasni SQL" msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Izradi PHP kod" @@ -5122,13 +5123,13 @@ msgstr "Opis" msgid "Use this value" msgstr "Upotrijebi ovu vrijednost" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5570,7 +5571,7 @@ msgid "Set value: %s" msgstr "Postavi vrijednost %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Vrati zadanu vrijednost" @@ -5937,78 +5938,90 @@ msgstr "" msgid "Default table tab" msgstr "Preimenuj bazu podataka u" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Unesi nazive tablica i polja sa stražnjim navodnicima" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Unesi nazive tablica i polja sa stražnjim navodnicima" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Predloži strukturu tablice" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Predloži strukturu tablice" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Održavanje tablice" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Izjave" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Spremi kao datoteku" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "Tablica znakova za datoteku:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Oblikovanje" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -6020,75 +6033,75 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Nazive polja stavi u prvi red" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Polja obuhvaćena po" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Polja izostavljena po" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "NULL zamijeni s" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Redovi završeni s" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Redovi završeni s" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel izdanje" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 #, fuzzy msgid "Database name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 #, fuzzy msgid "Server name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 #, fuzzy msgid "Table name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6099,532 +6112,532 @@ msgstr "Predložak naziva datoteka" msgid "Dump table" msgstr "%s tablica" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Uključi naslov tablice" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Naslov tablice" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Nastavljeni naslov tablice" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Ključ oznake" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME vrsta" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Spremi na server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 #, fuzzy msgid "Remember file name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Unesi nazive tablica i polja sa stražnjim navodnicima" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Način rada SQL kompatibilnosti" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Izrada/Ažuriranje/Provjera datuma" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Upotrijebi odgođena umetanja" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Onemogući provjere stranih znakova" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Izradi novu tablicu u bazi podataka %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Za BLOB upotrijebi heksadecimalno" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Upotrijebi ignoriranje umetaka" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Najveća duljina izrađenog upita" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Izvoz uključi u transakciju" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 #, fuzzy msgid "Export time in UTC" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Automatic recovery mode" msgid "Customize browse mode." msgstr "Rad s automatskim povratom" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy msgid "Customize default options." msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy msgid "Customize edit mode." msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Export defaults" msgstr "Uvezi datoteke" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy msgid "Customize default export options." msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Mogućnosti" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generiraj" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 #, fuzzy msgid "Import defaults" msgstr "Uvezi datoteke" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "Customize default common import options." msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Uvoz / izvoz" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize main frame" msgid "Customize appearance of the navigation panel." msgstr "Postavi glavni okvir" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Poslužitelji" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "Glavni okvir" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Ostale postavke jezgre" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Broj stranice:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Customize query window options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Sigurnost" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Osnovne postavke" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Authentication settings." msgstr "Replikacija" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Konfiguracija servera" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "MySQL connection collation" msgid "Enter server connection parameters." msgstr "MySQL uspoređivanje veza" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Pohrana konfiguracije" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Customize export options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 #, fuzzy msgid "Customize import defaults" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize main frame" msgid "Customize navigation panel" msgstr "Postavi glavni okvir" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "Postavi glavni okvir" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "SQL upit" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "SQL upit" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "SQL upit" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "Stanje" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize main frame" msgid "Customize startup page." msgstr "Postavi glavni okvir" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "Baza podataka za korisnika" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "Baza podataka za korisnika" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "Tablica" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Shema relacija" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Veličina papira" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Upotrijebi tekstualno polje" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy msgid "Customize text input fields." msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Customize default options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Upozorenja" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -6635,122 +6648,122 @@ msgstr "" "ograničenja. Ovo bi mogao biti dobar način uvoza velikih datoteka, ali može " "prekinuti transakcije." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Onemogući provjere stranih znakova" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Podatke tablice zamijeni datotekom" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Oblikovanje uvezene datoteke" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Upotrijebi lokalnu ključnu riječ" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Nazive polja stavi u prvi red" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start." msgstr "Broj zapisa (upita) koje je potrebno preskočiti od početka" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Number of inserted rows" msgstr "Broj presloženih redaka." -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Izbriši svve kolačiće na odlasku" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6758,51 +6771,51 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of databases displayed in database list." msgstr "Broj otvorenih tablica." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Maximum databases" msgstr "Nema baza podataka" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6810,13 +6823,13 @@ msgid "" "the navigation tree." msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "Najveća veličina datoteke za privremeno preslagivanje" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6824,102 +6837,102 @@ msgid "" "tree." msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of tables displayed in table list." msgstr "Broj otvorenih tablica." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Memory limit" msgstr "Ograničenja resursa" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "Prikaži logo u lijevom okviru" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "Prikaži logo u lijevom okviru" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Prikaži logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "Show logo in left frame" msgid "URL where logo in the navigation panel will point to." msgstr "Prikaži logo u lijevom okviru" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "The number of tables that are open." msgid "" @@ -6927,972 +6940,972 @@ msgid "" "display a filter box." msgstr "Broj otvorenih tablica." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of items to display the filter box" msgstr "Broj otvorenih tablica." -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of databases to display the database filter box" msgstr "Broj otvorenih tablica." -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 #, fuzzy msgid "Database tree separator" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Naslov tablice" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Broj otvorenih tablica." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy msgid "Recently used tables" msgstr "Provjeri tablicu" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Izmijeni rasporede tablice po" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Naslov tablice" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Persistent connections" msgid "Use persistent connections to MySQL databases." msgstr "Stalne veze" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Stalne veze" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Preimenuj tablicu u" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Popravi grane" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display field" msgid "Relational display" msgstr "Polje za prikaz relacija" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 #, fuzzy msgid "Save directory" msgstr "Osnovna mapa podataka" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Vrijednost sesije" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy msgid "Authentication method to use." msgstr "Replikacija" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Tip autentifikacije" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Zabilježi tablicu" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Komprimiraj vezu" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 #, fuzzy msgid "Connection type" msgstr "Veze" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Kontroliraj korisničke lozinke" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Bilo koje računalo" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Bilo koje računalo" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "Nema baza podataka" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "naziv poslužitelja" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Connect without password" msgid "Try to connect without password." msgstr "Spoji se bez lozinke" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Spoji se bez lozinke" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "naziv baze podataka" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "ID poslužitelja" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiziraj tablicu" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Varijable" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Popravi tablicu" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "Odabir poslužitelja" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Koristi SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazivanje stupca komentara" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentiraj tablicu" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Izjave" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Rad s automatskim povratom" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Upotrijebi tablice" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Upotrijebi tablicu poslužitelja" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Prikaži PHP podatke" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy msgid "Show Last check timestamp" msgstr "Prikaži stanje potčinjenog" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Prikaži otvorene tablice" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Prikaži mrežu" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Prikaži phpinfo() link" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Prikaži detaljne informacije o MySQL serveru" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži pune upite" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "SQL upit" -#: libraries/config/messages.inc.php:764 -msgid "Allow to display database and table statistics (eg. space usage)." -msgstr "" - -#: libraries/config/messages.inc.php:765 -#, fuzzy -msgid "Show statistics" -msgstr "Statistike redova" - #: libraries/config/messages.inc.php:766 -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:767 #, fuzzy +msgid "Show statistics" +msgstr "Statistike redova" + +#: libraries/config/messages.inc.php:768 +msgid "" +"Mark used tables and make it possible to show databases with locked tables." +msgstr "" + +#: libraries/config/messages.inc.php:769 +#, fuzzy msgid "Skip locked tables" msgstr "Prikaži otvorene tablice" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy msgid "Default title" msgstr "Preimenuj bazu podataka u" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7900,53 +7913,53 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 #, fuzzy msgid "Upload directory" msgstr "Osnovna mapa podataka" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7954,85 +7967,85 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "ID poslužitelja" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL upit" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8054,48 +8067,48 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV upotrebom LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Otvori izračunsku tablicu dokumenta" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Brzo" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Prilagođena boja" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8346,20 +8359,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Bez lozinke" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Lozinka:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8527,12 +8540,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: %3" -#| "$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: " +#| "%3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -9117,8 +9130,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9611,7 +9624,7 @@ msgstr "Odjava" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Customize main frame" msgid "Reload navigation panel" @@ -10321,8 +10334,8 @@ msgstr "Dobro došli u %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Vjerojatan razlog za ovo je da niste napravili konfiguracijsku datoteku. Za " "izradu možete upotrijebiti %1$sskriptu za instalaciju%2$s da biste je " @@ -10587,7 +10600,7 @@ msgstr "Nazive polja stavi u prvi red" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11664,7 +11677,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11672,16 +11685,16 @@ msgstr "Korisničko ime" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Korisničko ime" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Lozinka" @@ -11712,10 +11725,10 @@ msgstr "ID poslužitelja" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Računalo" @@ -11727,47 +11740,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Bilo koje računalo" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokalno" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Ovo računalo" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Upotrijebi tekstualno polje" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Upotrijebi tablicu poslužitelja" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Ponovite" @@ -12601,7 +12614,7 @@ msgstr "bez kompresije" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12674,14 +12687,14 @@ msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12692,7 +12705,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Opće privilegije" @@ -12703,7 +12716,7 @@ msgid "Global" msgstr "opće" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" @@ -12721,278 +12734,278 @@ msgid "" msgstr "" "Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "_Podaci prijave" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Upotrijebi tekstualno polje" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Ne mijenjaj lozinku" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s uspješno je promijenjena." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Opozvali ste privilegije za %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Dodaj korisnika" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Baza podataka za korisnika" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Izradi bazu podataka istog naziva i podari sve privilegije." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Index %s je ispušten" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Podarivanje" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnici nisu pronađeni." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "opće" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "specifično za bazu podataka" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "džoker" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specifično za bazu podataka" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Opozovi" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy msgid "Edit user group" msgstr "Web poslužitelj" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… zadržati staru." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… izbriši starog iz korisničkih tablica." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… opozovi sve aktivne privilegije iz stare i potom je izbriši." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Izradi novog korisnika s istim privilegijama i…" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilegije specifične za stupac" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Dodaj privilegije za sljedeće baze podataka" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Kako bi se mogli upotrebljavati u doslovnom smislu, džokerima \\_ i \\% mora " "prethoditi znak \\." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Dodaj privilegije za sljedeću tablicu" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Ukloni odabrane korisnike" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Nema odabranih korisnika za uklanjanje!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Ponovno učitavanje privilegija" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Brisanje %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Novo" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL " "tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica " "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -14929,23 +14942,23 @@ msgstr "Veličina pohrane indeksa" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Vrsta indeksa:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Korisnik" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Komentar" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15997,8 +16010,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -16132,8 +16145,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -17918,8 +17931,8 @@ msgstr "najv. uzastopnih veza" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." #~ msgstr "" -#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1" -#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju." +#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]" +#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju." #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " diff --git a/po/hu.po b/po/hu.po index 4b9daa5384..7684bad429 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-19 22:12+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" @@ -67,7 +67,7 @@ msgstr "Tábla megjegyzések:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Oszlop" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Hivatkozás" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Elsődleges" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Nem" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -262,14 +262,14 @@ msgstr "" "A phpMyAdmin beállítástárolója ki lett kapcsolva. %sTudja meg, hogy miért%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tábla" @@ -282,7 +282,7 @@ msgid "Rows" msgstr "Sorok" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Méret" @@ -371,9 +371,9 @@ msgstr "Állapot" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -566,15 +566,15 @@ msgstr "Geometria hozzáadása" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -607,11 +607,11 @@ msgstr "Hiányos paraméterek" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %" -"sdokumentációban%s a korlátozás feloldása végett." +"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " +"%sdokumentációban%s a korlátozás feloldása végett." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -700,7 +700,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Vissza" @@ -723,7 +723,7 @@ msgid "General Settings" msgstr "Általános beállítások" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Jelszó megváltoztatása" @@ -796,7 +796,7 @@ msgstr "Verziószám:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentáció" @@ -1047,7 +1047,7 @@ msgstr "Index hozzáadása" msgid "Edit Index" msgstr "Index szerkesztése" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "%s oszlop hozzáadása az indexhez" @@ -1074,7 +1074,7 @@ msgstr "Legalább egy oszlopot kell hozzáadnia." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "SQL előnézete" @@ -1103,12 +1103,12 @@ msgstr "A gépnév üres!" msgid "The user name is empty!" msgstr "Üres a felhasználónév!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" @@ -1309,7 +1309,7 @@ msgstr "Legalább egy változót adjon meg a sorozathoz!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1604,7 +1604,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1817,7 +1817,7 @@ msgstr "Lekérdezési doboz megjelenítése" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2072,7 +2072,7 @@ msgstr "Adatmutató tartalma" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Kihagyás" @@ -2252,7 +2252,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Összes megjelenítése" @@ -2352,7 +2352,7 @@ msgstr "Panel elrejtése" msgid "Show hidden navigation tree items." msgstr "Rejtett navigációs faszerkezet elemeinek megjelenítése." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Hozzákapcsolás a fő panelhez" @@ -2855,16 +2855,16 @@ msgid "Delete" msgstr "Törlés" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2979,7 +2979,7 @@ msgid "During current session" msgstr "Jelenlegi munkamenet közben" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3360,11 +3360,11 @@ msgstr "Az SQL-lekérdezés végrehajtása sikerült." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %" -"sdokumentációban%s." +"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a " +"%sdokumentációban%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3398,6 +3398,7 @@ msgstr "A kijelöltekkel végzendő művelet:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3413,12 +3414,12 @@ msgstr "Módosítás" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3613,7 +3614,7 @@ msgstr "" "eltávolítható." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Kiszolgáló" @@ -3628,11 +3629,11 @@ msgstr "Nézet" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3648,7 +3649,7 @@ msgstr "Szerkezet" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3674,9 +3675,9 @@ msgstr "Beszúrás" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Jogok" @@ -3736,9 +3737,9 @@ msgid "Central columns" msgstr "Központi oszlopok" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Adatbázisok" @@ -3846,7 +3847,7 @@ msgid "Recent" msgstr "Legutóbbi" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Kedvenc táblák" @@ -3917,7 +3918,7 @@ msgstr "Rendezés" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4279,16 +4280,16 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Small floating-point szám, értéktartománya -3.402823466E+38 és -1.175494351E-" -"38 között, 0, 1.175494351E-38 és 3.402823466E+38 között" +"Small floating-point szám, értéktartománya -3.402823466E+38 és " +"-1.175494351E-38 között, 0, 1.175494351E-38 és 3.402823466E+38 között" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Double-precision floating-point szám, értéktartománya -1.7976931348623157E" @@ -4578,7 +4579,7 @@ msgstr "Max: %s%s" msgid "MySQL said: " msgstr "A MySQL mondta: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Az SQL magyarázata" @@ -4590,7 +4591,7 @@ msgstr "SQL magyarázat átugrása" msgid "Without PHP Code" msgstr "PHP kód nélkül" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP-kód létrehozása" @@ -4701,13 +4702,13 @@ msgstr "Leírás" msgid "Use this value" msgstr "Ezen érték használata" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5108,7 +5109,7 @@ msgid "Set value: %s" msgstr "Adja meg az értéket: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Alapértelmezett érték visszaállítása" @@ -5206,8 +5207,8 @@ msgid "" "%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause " "random session invalidation (currently session.gc_maxlifetime is %d)." msgstr "" -"A %sLogin cookie validity%s, amely nagyobb, mint a %ssession.gc_maxlifetime%" -"s, véletlenszerű munkamenet érvénytelenítést okozhat (a session." +"A %sLogin cookie validity%s, amely nagyobb, mint a %ssession.gc_maxlifetime" +"%s, véletlenszerű munkamenet érvénytelenítést okozhat (a session." "gc_maxlifetime értéke jelenleg: %d)." #: libraries/config/ServerConfigChecks.class.php:413 @@ -5238,8 +5239,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Ha szükségesnek érzi, használjon további védelmi beállításokat: %" -"sgéphitelesítés%s beállítások és %smegbízható proxyk listája%s. Az IP-alapú " +"Ha szükségesnek érzi, használjon további védelmi beállításokat: " +"%sgéphitelesítés%s beállítások és %smegbízható proxyk listája%s. Az IP-alapú " "védelem azonban lehet, hogy nem megbízható, ha az Ön IP-címe olyan " "internetszolgáltatóhoz tartozik, ahol több ezer felhasználó, köztük Ön is, " "csatlakozik az internethez." @@ -5540,23 +5541,35 @@ msgstr "A táblába belépéskor megjelenített lap." msgid "Default table tab" msgstr "Alapértelmezett tábla fül" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Idézőjelek használata a tábla- és mezőneveknél" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Idézőjelek használata a tábla- és mezőneveknél" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Legyenek-e rejtve a táblaszerkezet műveletei." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Táblaszerkezet műveletek elrejtése" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "A kiszolgálók legördülő helyett listaként történő megjelenítése." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Kiszolgálók megjelenítése listaként" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5564,11 +5577,11 @@ msgstr "" "A táblák tömeges karbantartásának, mint az optimalizálás vagy a kijelölt " "táblák kijavításának, a letiltása." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Többtáblás karbantartás letiltása" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5576,39 +5589,38 @@ msgstr "" "Adja meg a másodpercek számát, amíg egy parancsfájl futása engedélyezett " "([kbd]0[/kbd], ha korlátlan)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Végrehajtási idő legfeljebb" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format -#| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s utasítás használata" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Mentés fájlként" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "A fájl karakterkészlete" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formátum" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Tömörítés" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5618,60 +5630,60 @@ msgstr "Tömörítés" msgid "Put columns names in the first row" msgstr "A mezőneveket tegye az első sorba" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Oszlopok körbezárása ezzel" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Oszlopok escape-elése ezzel" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "NULL cseréje ezzel" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "A mezőkben lévő CRLF karakterek eltávolítása" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Oszlopok végződése ezzel" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Sorok végződése ezzel" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel változat" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Adatbázisnév sablon" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Kiszolgálónév sablon" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Táblanév sablon" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5680,137 +5692,137 @@ msgstr "Táblanév sablon" msgid "Dump table" msgstr "Tábla kiírása" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Tartalmazza a táblacímet" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Táblacím" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Táblacím folytatása" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Feliratkulcs" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-típus" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Kapcsolatok" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Exportálás módja" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Mentés a kiszolgálón" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "A létező fájl(ok) felülírása" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "A fájlnévsablon megjegyzése" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Idézőjelek használata a tábla- és mezőneveknél" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL kompatibilitási mód" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE beállítások:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Létrehozás/módosítás/ellenőrzés dátuma" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Késleltetett beszúrások használata" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Az idegen kulcsok ellenőrzésének letiltása" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Nézetek exportálása táblaként" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s hozzáadása" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Hexadecimális értékek használata a BINARY és BLOB értékekhez" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Mellőző beszúrások használata" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Adat beillesztésére vonatkozó szintaxis" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "A létrehozott lekérdezés hossza legfeljebb" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Exportálás típusa" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Az exportálás befoglalása egy tranzakcióban" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exportálás időzónája UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Biztonságos kapcsolat kényszerítése a phpMyAdmin használata során." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "SSL kapcsolat kényszerítése" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5818,144 +5830,144 @@ msgstr "" "Az elemek rendezési sorrendje egy idegen kulcs legördülő panelban; [kbd]" "tartalom[/kbd]: hivatkozott adat, [kbd]id[/kbd]: a kulcs értéke." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Az idegen kulcs legördülő sorrendje" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Legördülő lesz használatban, ha kevesebb elem van jelen." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Idegen kulcs korlátozása" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Tallózó mód" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "A böngésző mód testreszabása." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Alapértelmezett beállítások testreszabása." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Fejlesztő" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Beállítások phpMyAdmin fejlesztőknek." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Szerkesztő mód" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "A szerkesztő mód testreszabása." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Exportálás alapértelmezései" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Az exportálás alapértelmezett beállításainak testreszabása." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funkciók" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Általános" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Néhány gyakran használt lehetőség beállítása." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importálás alapértelmezései" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Az importálás alapértelmezett, gyakori beállításainak testreszabása." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importálás / exportálás" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" "Az importálás és exportálás könyvtárainak, illetve a tömörítési lehetőségek " "beállítása." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Az adatbázisok megjelenítésének beállításai." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigációs keret" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "A navigációs keret megjelenésének testreszabása." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Kiszolgálók" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "A kiszolgálók megjelenítésének beállításai." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "A táblák megjelenítésének beállításai." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Fő keret" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Egyéb alapbeállítások" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "A sehova sem illő beállítások." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Oldalcímek" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5964,19 +5976,19 @@ msgstr "" "[doc@cfg_TitleTable]dokumentációra[/doc] a mágikus parancsok végett, amiket " "speciális értékek megjelenítésére használhat." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Lekérdezés ablak" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "A lekérdezés ablak beállításainak testreszabása" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Biztonság" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -5984,23 +5996,23 @@ msgstr "" "Ne feledje, hogy a phpMyAdmin csak egy felhasználói kezelőfelület, és " "funkciói nem korlátozzák a MySQL-t." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Alapbeállítások" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Hitelesítés típusa" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Hitelesítés beállításai." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Kiszolgáló beállítások" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6008,15 +6020,15 @@ msgstr "" "Speciális kiszolgáló beállítások, amelyeket ne módosítson, ha nem tudja, " "hogy mire valók." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Adja meg a kiszolgáló csatlakozási paramétereit." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Beállítástároló" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6026,121 +6038,121 @@ msgstr "" "hozzáférést, nézze meg a [doc@linked-tables]phpMyadmin beállítástárolók[/" "doc] fejezetet a dokumentációban." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Változások követése" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" "Változások követése az adatbázisban. A phpMyAdmin beállítástárolóját igényli." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Exportálás beállításainak testreszabása" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Importálás alapértelmezéseinek testreszabása" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "A navigációs keret testreszabása" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "A fő keret testreszabása" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL-lekérdezések" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL-lekérdezési panelek" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" "Az SQL-lekérdezési dobozokban megjelenített hivatkozások testreszabása." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL-lekérdezések beállításai." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Indítás" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "A kezdőlap testreszabása." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Adatbázis-szerkezet" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Válassza ki, melyik részletek jelenjenek meg az adatbázis szerkezetben " "(táblák listája)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Táblaszerkezet" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Beállítások a táblaszerkezethez (oszlopok listája)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Fülek" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Válassza ki, hogyan kívánja használni a lapokat." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Kapcsolati séma megjelenítése" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Papírméret" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Szöveges mezők" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Szöveges beviteli mezők testreszabása." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! szöveg" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Alapértelmezett beállítások testreszabása" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Figyelmeztetések" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Egyes phpMyAdmin által megjelenített figyelmeztetések letiltása." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6148,15 +6160,15 @@ msgstr "" "A [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] tömörítés engedélyezése az " "importálási és az exportálási műveletekhez." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Az iconv funkció extra paraméterei" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6164,11 +6176,11 @@ msgstr "" "Ha engedélyezve van, akkor a phpMyAdmin folytatja a több utasításból álló " "lekérdezések kiszámítását, ha nem sikerült az egyik lekérdezés." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Több utasítás hibáinak figyelmen kívül hagyása" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6178,27 +6190,26 @@ msgstr "" "szerint közel van az időkorláthoz. Ez a nagy fájlok importálásának lehet jó " "módja, azonban megszakíthatja a tranzakciókat." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Részleges importálás: a megszakítás engedélyezése" -#: libraries/config/messages.inc.php:336 -#| msgid "Disable foreign key checks" +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "Az idegen kulcsok ellenőrzésének átmeneti letiltása importálás közben" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Ne legyen megszakítás INSERT hiba esetén" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "A táblaadatok lecserélése fájlra" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6206,70 +6217,70 @@ msgstr "" "Alapértelmezett formátum. Tartsa szem előtt, hogy ez a lista függ a helytől " "(adatbázis, tábla) és csak az SQL érhető el mindig." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Az importált fájl formátuma" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "LOCAL kulcsszó használata" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "A mezőnevek az első sorban" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Ne importálja az üres sorokat" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Valuták importálása ($5.00 helyett 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" "Százalékos értékek importálása pontos tizedestörtként (12.00% helyett .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Az elejétől kihagyandó lekérdezések száma." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Részleges importálás: lekérdezések kihagyása" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne használja az AUTO_INCREMENT-et nulla értékekhez" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Csúszkák kezdeti állapota" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Hány sor szúrható be egyszerre." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "A beszúrt sorok száma" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "A megjelenített karakterek legnagyobb száma nem numerikus oszlop esetén a " "böngésző nézetben." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Mező-karakterek korlátozása" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6280,11 +6291,11 @@ msgstr "" "kiszolgáló használata esetén könnyen megfeledkezhet a másik kiszolgálóról " "való kijelentkezésről." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Kijelentkezéskor az összes cookie törlése" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6292,11 +6303,11 @@ msgstr "" "Meghatározza, hogy az előző bejelentkezést kell-e újrahívni vagy sem a [kbd]" "cookie[/kbd] hitelesítési módban." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "A felhasználónév újrahívása" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6308,50 +6319,50 @@ msgstr "" "munkamenetekhez kerül megtartásra, vagyis a böngésző ablakának bezárásakor " "azonnal törlésre kerül. Ez nem megbízható környezetek esetén ajánlott." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "A bejelentkezési cookie tárolása" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" "Meghatározza, hogy meddig érvényes (másodpercben) egy bejelentkezési süti." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "A bejelentkezési cookie érvényessége" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "A szövegdoboz méretének duplázása LONGTEXT oszlopoknál." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Nagyobb LONGTEXT szövegbeviteli mezők" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" "Egy SQL-lekérdezés megjelenítésekor használt karakterek legnagyobb száma." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "A SQL kijelzett hossza legfeljebb" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "A felhasználók nem adhatnak meg nagyobb értéket" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Az adatbázis-listában megjelenített adatbázisok legnagyobb száma." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Az adatbázisok száma" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6359,21 +6370,21 @@ msgstr "" "A navigációs faszerkezet első szintjének egyes oldalain megjeleníthető " "elemek száma." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Az első szinten lévő legtöbb elem" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "A navigációs faszerkezet egyes oldalain megjeleníthető elemek száma." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Ág maximális elemeinek száma" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6382,19 +6393,19 @@ msgstr "" "eredményhalmaz több sort tartalmaz, akkor az \"Előző\" és a \"Következő\" " "hivatkozás lesz látható." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "A megjelenítendő sorok száma" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "A táblalistában megjelenített táblák legnagyobb száma." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "A táblák száma" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6402,40 +6413,40 @@ msgstr "" "Egy parancsfájl számára a lefoglaláshoz engedélyezett bájtok száma, például " "[kbd]32M[/kbd] (korlátlan: [kbd]0[/kbd])." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "A memória korlátozása" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "A navigációs panelen lecseréli az adatbázisfát egy kiválasztóra" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Adatbázisok navigációjának megjelenítése faszerkezetként" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Összekapcsolás a fő panellel a jelenlegi adatbázis vagy tábla kiemelésével." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Logó megjelenítése a navigációs panelen." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "A logó megjelenítése" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "Az URL, ahová a navigációs panelen lévő logó mutatni fog." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "A logó hivatkozásának URL-címe" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6443,41 +6454,41 @@ msgstr "" "A hivatkozott oldal megnyitása a főablakban ([kbd]main[/kbd]) vagy egy újban " "([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "A logó hivatkozásának célja" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "A választható kiszolgálók megjelenítése a navigációs panel tetején." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Kiszolgálók kiválasztásának megjelenítése" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "A gyors hozzáférés ikon célja" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "A második gyors hozzáférés ikon célja" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "A szűrődoboz megjelenítéséhez szükséges táblák minimális száma." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "A szűrődoboz megjelenítéséhez szükséges elemek minimális száma" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "A szűrődoboz megjelenítéséhez szükséges minimális adatbázisok száma" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6485,97 +6496,97 @@ msgstr "" "Elemek csoportosítása a navigációs faszerkezetben (lent megadott elválasztó " "által meghatározva)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Elemek csoportosítása a fában" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Az adatbázisokat különféle fa szintekre elválasztó karakterlánc." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Az adatbázisfa elválasztója" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "A táblákat különféle fa szintekre tagoló karakterlánc." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Táblafa elválasztó" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "A táblafa mélysége legfeljebb" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Kiszolgáló kiemelése az egérmutató alatt." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "A szövegkiemelés engedélyezése" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Ajánlja-e fel a fa kiterjesztésének lehetőségét a navigációs panelen." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Navigációs fa kiterjesztés engedélyezése" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Az utoljára használt táblák legnagyobb száma; állítsa 0-ra a tiltáshoz." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "A kedvenc táblák legnagyobb száma; állítsa 0-ra a tiltáshoz." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Utoljára használt táblák" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Ezek a Szerkesztés, Másolás és Törlés hivatkozások." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Hol legyenek a táblasor linkek" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Természetes rendezés" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Csak ikonok, csak szöveg vagy mindkettő használata." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Navigációs sáv" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip-kimenet pufferelése" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6583,19 +6594,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Alapértelmezett rendezési mód" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Állandó kapcsolatok használata a MySQL adatbázisokhoz." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Állandó kapcsolatok" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6605,11 +6616,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Hiányzó phpMyAdmin beállítástároló táblák" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6617,11 +6628,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Kiszolgáló/programkönyvtár eltérés figyelmeztetés" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6629,27 +6640,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "MySQL fenntartott kifejezés figyelmeztetés" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Menü fülek megjelenítésének módja" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Hogy jelenjenek meg a különböző műveletek linkjei" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "A bináris mezők védelme" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6660,110 +6671,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Állandó lekérdezési előzmények" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 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:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "A lekérdezési előzmények hossza" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Átkódoló motor" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Emlékezzen a tábla elrendezésére" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Elsődleges kulcs alapértelmezett rendezési sorrendje" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Fejlécek ismétlése" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Rács szerkesztés: eseményindító művelet" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Relációs megjelenítés" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "A beállítások megjelenítéséhez" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Mentési könyvtár" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Hagyja üresen, ha nem használja." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Az állomás hitelesítési sorrendje" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Hagyja üresen az alapértelmezésekhez." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Az állomás hitelesítési szabályai" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "A jelszó nélküli bejelentkezés engedélyezése" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "A root bejelentkezés engedélyezése" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Munkamenet időzóna" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" @@ -6771,15 +6782,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:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP-tartomány" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6789,19 +6800,19 @@ msgstr "" "elérési útja (nem a dokumentum gyökerében található; javaslat: /etc/swekey." "conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey konfigurációs fájl" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "A használandó hitelesítési mód." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Hitelesítés típusa" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6809,11 +6820,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Könyvjelzők táblája" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6821,33 +6832,33 @@ msgstr "" "Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, ajánlott: [kbd]" "pma_column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Oszlopinformációs tábla" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "A MySQL-kiszolgálóhoz való kapcsolat tömörítése." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Kapcsolat tömörítése" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Csatlakozás típusa" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "A kontrollfelhasználó jelszava" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6856,11 +6867,11 @@ msgstr "" "információk érhetők el a [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/" "a] oldalon." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Kontrollfelhasználó" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6868,11 +6879,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:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Kontrollgép" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6882,15 +6893,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Kontroll port" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "A (PCRE) reguláris kifejezésre illeszkedő adatbázisok elrejtése." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6899,15 +6910,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Az INFORMATION_SCHEMA használatának letiltása" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Adatbázisok elrejtése" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6915,23 +6926,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:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL-lekérdezések előzményeinek táblája" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "A gépnév, ahol a MySQL-kiszolgáló fut." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "A kiszolgáló gépneve" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Kijelentkezési URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6939,15 +6950,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:624 +#: libraries/config/messages.inc.php:626 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:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "QBE mentett keresések táblája" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6955,11 +6966,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:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Központi oszlopok táblája" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -6967,15 +6978,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:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Kapcsolódási kísérlet jelszó nélkül." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Kapcsolódás jelszó nélkül" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -6985,30 +6996,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Csak a kilistázott adatbázisok megjelenítése" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "A konfigurációs hitelesítés jelszava" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF-séma: pages table" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7019,22 +7030,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Adatbázis neve" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "A kiszolgáló portja" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7042,11 +7053,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Utoljára használt tábla" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7054,11 +7065,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Kedvencek tábla" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7066,11 +7077,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Kapcsolat tábla" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7078,33 +7089,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:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Signon munkamenet neve" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Signon URL-címe" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "A kiszolgáló szoftvercsatornája" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL használata" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7112,11 +7123,11 @@ msgstr "" "Hagyja üresen, ha nincs PDF-séma támogatás, ajánlott: [kbd]pma__table_coords" "[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Tervező és PDF-séma: table coordinates" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7124,11 +7135,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Oszlopok tábla megjelenítése" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7136,11 +7147,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Felhasználói felület beállítások tábla" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7148,11 +7159,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "DROP DATABASE hozzáadása" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7160,11 +7171,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "DROP TABLE hozzáadása" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7172,20 +7183,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "DROP VIEW hozzáadása" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Utasítások követésre" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7193,11 +7204,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:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL-lekérdezések követésének táblája" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7205,11 +7216,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:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Verziók automatikus létrehozása" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7217,11 +7228,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Felhasználók beállításainak tárolótáblája" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7231,11 +7242,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Felhasználók tábla" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7245,11 +7256,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Felhasználói csoport tábla" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7257,15 +7268,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Rejtett navigációs elemek tábla" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "A konfigurációs hitelesítés felhasználóneve" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7273,21 +7284,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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "A kiszolgáló részletes neve" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Az összes sor megjelenítésének engedélyezése" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7297,47 +7308,47 @@ 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "A jelszómódosító űrlap megjelenítése" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Az adatbázis létrehozása űrlap megjelenítése" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Létrehozás időbélyegének megjelenítése" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Legutóbbi változás időbélyegének megjelenítése" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Utolsó ellenőrzés időbélyegének megjelenítése" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7345,27 +7356,27 @@ msgstr "" "Megadja, hogy a típusmezők kezdetben megjelenjenek-e a szerkesztés/beszúró " "módban." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Mezőtípusok megjelenítése" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "A függvénymezők megjelenítése" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Jelenjen-e meg javaslat vagy sem." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Segítség megjelenítése" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7373,66 +7384,66 @@ msgstr "" "Megjeleníti a [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "kimenetre mutató hivatkozást." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "A phpinfo() hivatkozás megjelenítése" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Részletes MySQL kiszolgáló információk megjelenítése" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Az SQL-lekérdezések megjelenítése" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Lekérdezési doboz megőrzése" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "A statisztika megjelenítése" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "A zárolt táblák kihagyása" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Egy figyelmeztetés jelenik meg a főoldalon, ha Suhosin észlelhető." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin figyelmeztetés" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7442,11 +7453,11 @@ msgstr "" "session.gc_maxlifetime PHP beállítás értéke kisebb a „LoginCookieValidity” " "értékénél." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Bejelentkezési cookie érvényesség figyelmeztetés" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7454,11 +7465,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) és a lekérdezés ablaknál (*1,25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Szövegdoboz oszlopai" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7466,31 +7477,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) és a lekérdezés ablaknál (*1,25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Szövegdoboz sorai" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Alapértelmezett cím" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7502,28 +7513,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Feltöltési könyvtár" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 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:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Adatbázis-kereső használata" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7531,26 +7542,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Fejlesztő fül engedélyezése a beállításokban" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Új verzió ellenőrzése" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7562,11 +7573,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:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Proxy URL" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7576,19 +7587,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Proxy felhasználónév" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "A jelszó a proxyval való hitelesítéshez." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Proxy jelszó" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7596,36 +7607,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "reCaptcha nyilvános kulcsa" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "reCaptcha privát kulcsa" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Hibajelentések küldése" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." @@ -7633,11 +7644,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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "Az Enter a parancssorban hajtja végre a lekérdezéseket" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7645,7 +7656,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:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Zéró beállítási mód engedélyezése" @@ -7665,44 +7676,44 @@ msgstr "HTTP hitelesítés" msgid "Signon authentication" msgstr "Signon hitelesítés" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV a LOAD DATA használatával" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Open Document munkafüzet" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Gyors" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Egyedi" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Adatbázis exportálási beállításai" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excel CSV adat" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Open Document szöveges dokumentum" @@ -7782,7 +7793,6 @@ msgid "New page" msgstr "Új oldal" #: libraries/db_designer.lib.php:297 libraries/db_designer.lib.php:300 -#| msgid "Save page" msgid "Save page as" msgstr "Oldal mentése másként" @@ -7909,20 +7919,20 @@ msgstr "Nem lehet a sorokat megszámolni egy nem pufferelt eredményhalmazban" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Nincs jelszó" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Jelszó:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Újraírás:" @@ -8061,8 +8071,8 @@ msgstr ", @TABLE@ lesz a tábla neve" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ennek az értéknek az értelmezése a(z) %1$sstrftime%2$s használatával " "történik, vagyis időformázó karakterláncokat használhat. Továbbá a következő " @@ -8231,12 +8241,10 @@ msgstr "" "az elsőtől kezdve:" #: libraries/display_import.lib.php:332 -#| msgid "Options" msgid "Other Options:" msgstr "Egyéb beállítások:" #: libraries/display_import.lib.php:338 -#| msgid "Disable foreign key checks" msgid "Disable foreign key check" msgstr "Az idegen kulcs ellenőrzésének letiltása" @@ -8619,11 +8627,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Dokumentáció és további információ a PBXT honlapján: %sPrimeBase XT Honlap:%" -"s." +"Dokumentáció és további információ a PBXT honlapján: %sPrimeBase XT Honlap:" +"%s." #: libraries/engines/pbxt.lib.php:138 msgid "Related Links" @@ -9091,7 +9099,7 @@ msgstr "Kilépés" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentáció" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Navigációs panel újratöltése" @@ -9785,11 +9793,11 @@ msgstr "Üdvözli a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1" -"$stelepítőszkripttel%2$s el tudja készíteni." +"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A " +"%1$stelepítőszkripttel%2$s el tudja készíteni." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10016,7 +10024,7 @@ msgstr "A mezőneveket tegye az első sorba:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Gép:" @@ -11035,22 +11043,22 @@ msgstr "" "szakaszhoz:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Felhasználónév:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Felhasználónév" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Jelszó" @@ -11078,10 +11086,10 @@ msgstr "Kiszolgáló azonosító" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Gép" @@ -11094,38 +11102,38 @@ msgstr "" "Csak a --report-host=host_name-mel kezdődő szolgák láthatók ebben a listában." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Bármilyen gép" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Helyi" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Ez a gép" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Bármilyen felhasználó" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Szöveges mező használata:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Géptábla használata" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11134,7 +11142,7 @@ msgstr "" "értékek kerülnek felhasználásra helyette." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Újraírás" @@ -11870,7 +11878,7 @@ msgstr "Nincs" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Felhasználói csoport" @@ -11947,14 +11955,14 @@ msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Megjegyzés: a MySQL jogosultságnevek az angolból származnak." @@ -11963,7 +11971,7 @@ msgid "Administration" msgstr "Adminisztráció" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globális jogok" @@ -11972,7 +11980,7 @@ msgid "Global" msgstr "Globális" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" @@ -11991,18 +11999,18 @@ msgstr "" "A privilégium táblák újratöltése nélkül engedélyezi a felhasználók és jogok " "hozzáadását." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Bejelentkezési adatok" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Szöveges mező használata" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12010,216 +12018,216 @@ msgstr "" "Egy fiók már létezik ugyanezzel a felhasználónévvel, de esetleg egy másik " "gépnévvel." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Nincs jelszó megváltoztatás" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s jelszavának megváltoztatása sikerült." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s jogainak visszavonása megtörtént." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Felhasználó hozzáadása" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Adatbázis a felhasználó számára" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Az összes jog engedélyezése a(z) \"%s\" adatbázison." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "A(z) \"%s\" adatbázishoz hozzáférhető felhasználók" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "A felhasználó hozzáadása megtörtént." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Felhasználó" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Engedélyezés" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Nincs elegendő jogosultság a felhasználók megtekintéséhez." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Nem található felhasználó." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Bármi" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globális" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "adatbázis-specifikus" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "karakterhelyettesítő" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "tábla-specifikus" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Jogok szerkesztése" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Visszavonás" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Felhasználói csoport szerkesztése" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… a régiek megőrzése." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… a régiek törlése a felhasználói táblákból." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… az összes aktív jog visszaállítása a régiekből, majd törlés." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Oszlopspecifikus jogok" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Jogosultságok hozzáadása a következő adatbázisokon:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "A _ és a % karakterhelyettesítőt \\ jellel kell lezárni, hogy " "szövegkonstansként lehessen őket használni." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Jogok hozzáadása a következő táblán:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "A kijelölt felhasználók törlése" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "A felhasználók összes jogának visszavonása, majd törlése." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Nincs törlésre kijelölt felhasználó!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "A jogok újratöltése" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "A kiválasztott felhasználók törlése sikerült." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Ön frissítette %s jogait." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s törlése" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "%s felhasználó már létezik!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "%s jogosultságai" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "új" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Jogok szerkesztése:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12227,28 +12235,28 @@ msgstr "" "Megjegyzés: annak a felhasználónak a jogosultságait próbálja szerkeszteni, " "amellyel jelenleg be van lépve." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Felhasználók áttekintése" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL " "privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által " -"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %" -"stöltse be újra a jogokat%s a folytatás előtt." +"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " +"%stöltse be újra a jogokat%s a folytatás előtt." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." @@ -14040,19 +14048,19 @@ msgstr "Index választás:" msgid "Key block size:" msgstr "Kulcs blokkméret:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Index típusa:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Feldolgozó:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Megjegyzés:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Húzza az újrarendezéshez" @@ -14387,8 +14395,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"További beállításokat állíthat be a config.inc.php modosításával, pl. %" -"sBeállító parancsfájl%s használatával." +"További beállításokat állíthat be a config.inc.php modosításával, pl. " +"%sBeállító parancsfájl%s használatával." #: prefs_manage.php:321 msgid "Save to browser's storage" @@ -14792,8 +14800,8 @@ msgstr "" #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" -"A lassú lekérdezések mértékének kisebbnek kellene 5%%nál lennie, az érték %s%" -"%." +"A lassú lekérdezések mértékének kisebbnek kellene 5%%nál lennie, az érték %s" +"%%." #: libraries/advisory_rules.txt:70 msgid "Slow query rate" @@ -14812,8 +14820,8 @@ msgid "" "You have a slow query rate of %s per hour, you should have less than 1%% per " "hour." msgstr "" -"A lassú lekérdezések mértéke %s óránként, kevesebbnek kellene lennie, mint 1%" -"% óránként." +"A lassú lekérdezések mértéke %s óránként, kevesebbnek kellene lennie, mint " +"1%% óránként." #: libraries/advisory_rules.txt:77 msgid "Long query time" @@ -15084,8 +15092,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "A szabad lekérdezési gyorsítótár-memória jelenlegi aránya a teljes " "lekérdezési gyorsítótár méretéhez %s%%. 80%% felett kellene lennie" @@ -15242,8 +15250,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "A rendezések %s%%-a átmeneti táblákat hoz létre, ennek az értéknek " "alacsonyabbnak kell lennie, mint 10%%." @@ -16414,8 +16422,8 @@ msgstr "A concurrent_insert 0-ra van állítva" #~ "installed the necessary PHP extensions as described in the %sdocumentation" #~ "%s." #~ msgstr "" -#~ "Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %" -#~ "sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" +#~ "Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a " +#~ "%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" #~ "kiterjesztést." #, fuzzy @@ -17177,8 +17185,8 @@ msgstr "A concurrent_insert 0-ra van állítva" #~ "No themes support; please check your configuration and/or your themes in " #~ "directory %s." #~ msgstr "" -#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) %" -#~ "s könyvtárban." +#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) " +#~ "%s könyvtárban." #~ msgid "Switch to" #~ msgstr "Váltás" diff --git a/po/hy.po b/po/hy.po index aee9751786..2b7711a9cb 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-14 19:09+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Armenian \n" +"Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 2.1-dev\n" @@ -73,7 +73,7 @@ msgstr "Աղյուսակի մեկնաբանությունը" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -97,7 +97,7 @@ msgstr "Սյուն" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -153,8 +153,8 @@ msgid "Links to" msgstr "Կապեր" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -183,13 +183,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -212,13 +212,13 @@ msgstr "Ոչ" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -274,14 +274,14 @@ msgstr "" "սեղմեք %sայստեղ%s։" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Աղյուսակ" @@ -294,7 +294,7 @@ msgid "Rows" msgstr "Տողեր" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Ծավալը" @@ -390,9 +390,9 @@ msgstr "Վիճակը" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -585,15 +585,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -626,8 +626,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -700,7 +700,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -721,7 +721,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -800,7 +800,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -1031,7 +1031,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1058,7 +1058,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1089,12 +1089,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1291,7 +1291,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1562,7 +1562,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1773,7 +1773,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2021,7 +2021,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Ցույց տալ բոլորը" @@ -2288,7 +2288,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "Աղյուսակներ՝" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2777,16 +2777,16 @@ msgid "Delete" msgstr "Հեռացնել" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2911,7 +2911,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3320,8 +3320,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3356,6 +3356,7 @@ msgstr "Նշվածները՝" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3371,12 +3372,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3567,7 +3568,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3582,11 +3583,11 @@ msgstr "Ներկայացում" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3602,7 +3603,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3628,9 +3629,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3690,9 +3691,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3800,7 +3801,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Inside tables:" msgid "Favorite tables" @@ -3875,7 +3876,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4232,14 +4233,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4487,7 +4488,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4499,7 +4500,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4612,13 +4613,13 @@ msgstr "Նկարագրություն" msgid "Use this value" msgstr "Օգտագործել այս արժեքը" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5015,7 +5016,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5369,70 +5370,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5442,60 +5451,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5504,590 +5513,590 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Ավելացնել AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Ավելացնել %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Database comment:" msgid "Databases display options." msgstr "Տվյալների բազայի մեկնաբանությունը՝ " -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Table comments" msgid "Tables display options." msgstr "Աղյուսակի մեկնաբանությունը" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6095,1056 +6104,1056 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Inside tables:" msgid "Show databases navigation as tree" msgstr "Աղյուսակներ՝" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Table comments" msgid "Show logo in navigation panel." msgstr "Աղյուսակի մեկնաբանությունը" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table comments" msgid "Enable navigation tree expansion" msgstr "Աղյուսակի մեկնաբանությունը" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table comments" msgid "Table navigation bar" msgstr "Աղյուսակի մեկնաբանությունը" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Table comments" msgid "For display Options" msgstr "Աղյուսակի մեկնաբանությունը" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Inside tables:" msgid "Favorites table" msgstr "Աղյուսակներ՝" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Օգտագործել աղյուսակներ" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7152,52 +7161,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7205,80 +7214,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7298,44 +7307,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7545,20 +7554,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7695,8 +7704,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8194,8 +8203,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8660,7 +8669,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Table comments" msgid "Reload navigation panel" @@ -9322,8 +9331,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9548,7 +9557,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10477,22 +10486,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10520,10 +10529,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10535,45 +10544,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11289,7 +11298,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11354,14 +11363,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11370,7 +11379,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11379,7 +11388,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11396,253 +11405,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13271,19 +13280,19 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Մեկնաբանություն՝" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -14255,8 +14264,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14374,8 +14383,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/ia.po b/po/ia.po index a4d7441940..d7868215cd 100644 --- a/po/ia.po +++ b/po/ia.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2015-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-19 08:52+0200\n" "Last-Translator: Giovanni Sora \n" -"Language-Team: Interlingua " -"\n" +"Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,7 +71,7 @@ msgstr "Commentos de tabella:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "Columna" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "Ligamines a" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "Primari" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "No" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,18 +263,18 @@ msgstr "Le base de datos %1$s ha essite copiate como %2$s." msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -"Le immagazinage de configuration de phpMyAdmin ha essite deactivate. %" -"sDiscoperi perque%s." +"Le immagazinage de configuration de phpMyAdmin ha essite deactivate. " +"%sDiscoperi perque%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabula" @@ -287,7 +287,7 @@ msgid "Rows" msgstr "Rangos" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Grandor" @@ -377,9 +377,9 @@ msgstr "Stato" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -576,15 +576,15 @@ msgstr "Adde un geometria" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -617,8 +617,8 @@ msgstr "Parametros incomplete" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Probabilemente tu es essayante incargar un file troppo grande. Pro favor tu " "refere al %sdocumentation%s pro eluder iste limite." @@ -709,7 +709,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Retro" @@ -733,7 +733,7 @@ msgid "General Settings" msgstr "Preferentias general" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Modifica contrasigno" @@ -806,7 +806,7 @@ msgstr "Information de version:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentation" @@ -935,8 +935,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Sur le servitor es executante Suhosin. Controla le documentation: %" -"sdocumentation%s pro possibile problema." +"Sur le servitor es executante Suhosin. Controla le documentation: " +"%sdocumentation%s pro possibile problema." #: js/messages.php:29 libraries/import.lib.php:125 sql.php:143 msgid "\"DROP DATABASE\" statements are disabled." @@ -1061,7 +1061,7 @@ msgstr "Adde indice" msgid "Edit Index" msgstr "Modifica indice" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Adde %s columna(s) al indice" @@ -1088,7 +1088,7 @@ msgstr "Tu debe adder al minus un columna." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Vista preliminar SQL" @@ -1117,12 +1117,12 @@ msgstr "Le nomine de hospite es vacue!" msgid "The user name is empty!" msgstr "Le nomine de usator es vacue!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Le contrassigno es vacue!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Le contrasignos non es le mesme!" @@ -1324,7 +1324,7 @@ msgstr "Pro favor tu adde al minus un variabile al series!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1622,7 +1622,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1837,7 +1837,7 @@ msgstr "Monstra quadro de query" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2092,7 +2092,7 @@ msgstr "Contento del puncto de datos" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignora" @@ -2272,7 +2272,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Monstra omnes" @@ -2288,8 +2288,8 @@ msgstr "" #: js/messages.php:446 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -"Pro favor, tu inserta in valide catena hexadecimal. Characteres valide es 0-" -"9, A-F." +"Pro favor, tu inserta in valide catena hexadecimal. Characteres valide es " +"0-9, A-F." #: js/messages.php:447 msgid "" @@ -2377,7 +2377,7 @@ msgstr "Cela pannello" msgid "Show hidden navigation tree items." msgstr "Monstra elementos de arbore de navigation celate." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Ligamine con pannello principal" @@ -2886,16 +2886,16 @@ msgid "Delete" msgstr "Dele" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3010,7 +3010,7 @@ msgid "During current session" msgstr "Durante session currente" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3392,11 +3392,11 @@ msgstr "Le demanda (query) SQL ha essite executate con successo." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Iste vista ha al minus iste numero de rangos. Pro favor refere a %" -"sdocumentation%s." +"Iste vista ha al minus iste numero de rangos. Pro favor refere a " +"%sdocumentation%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3430,6 +3430,7 @@ msgstr "Si seligite:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3445,12 +3446,12 @@ msgstr "Modifica" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3643,7 +3644,7 @@ msgstr "" "removite." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Servitor" @@ -3658,11 +3659,11 @@ msgstr "Vista" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3678,7 +3679,7 @@ msgstr "Structura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3704,9 +3705,9 @@ msgstr "Inserta" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Permissiones" @@ -3766,9 +3767,9 @@ msgid "Central columns" msgstr "Columnas central" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Base de datos" @@ -3876,7 +3877,7 @@ msgid "Recent" msgstr "Recente" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Tabellas favorite" @@ -3948,7 +3949,7 @@ msgstr "Ordinante" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4297,9 +4298,9 @@ msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -"Le extension de un integer de 8 bytes signate es ex --" -"9,223,372,036,854,775,808 a 9,223,372,036,854,775,807, si non signate es ex " -"0 a 18,446,744,073,709,551,615" +"Le extension de un integer de 8 bytes signate es ex " +"--9,223,372,036,854,775,808 a 9,223,372,036,854,775,807, si non signate es " +"ex 0 a 18,446,744,073,709,551,615" #: libraries/Types.class.php:330 libraries/Types.class.php:772 msgid "" @@ -4312,16 +4313,17 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Pro un parve numero a virgula/puncto mobile, valores disponibile es ex -" -"3.402823466E+38 a -1.175494351E-38, 0, e ex 1.175494351E-38 a 3.402823466E+38" +"Pro un parve numero a virgula/puncto mobile, valores disponibile es ex " +"-3.402823466E+38 a -1.175494351E-38, 0, e ex 1.175494351E-38 a 3.402823466E" +"+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Pro un numero a virgula/puncto mobile de duple precision, valores " @@ -4373,8 +4375,8 @@ msgid "" "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" "Un marca de tempore, extension es 1970-01-01 00:00:01 UTC to 2038-01-09 " -"03:14:07 UTC, immagazinate como le numero de secundas ex le epocha (1970-01-" -"01 00:00:00 UTC)" +"03:14:07 UTC, immagazinate como le numero de secundas ex le epocha " +"(1970-01-01 00:00:00 UTC)" #: libraries/Types.class.php:350 libraries/Types.class.php:788 #, php-format @@ -4621,7 +4623,7 @@ msgstr "Dimension maxime: %s%s" msgid "MySQL said: " msgstr "Message de MySQL: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Explica SQL" @@ -4633,7 +4635,7 @@ msgstr "Non explica SQL" msgid "Without PHP Code" msgstr "Sin codice PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Crea codice PHP" @@ -4747,13 +4749,13 @@ msgstr "Description" msgid "Use this value" msgstr "Usa iste valor" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5160,7 +5162,7 @@ msgid "Set value: %s" msgstr "Fixa valor: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Restabili valor predefinite" @@ -5595,23 +5597,35 @@ msgstr "Tabulation que on monstra quando on inserta un tabella." msgid "Default table tab" msgstr "Tabulation predefinite de tabella" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Include nomines de tabellas e columnas con virgulettas" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Include nomines de tabellas e columnas con virgulettas" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Si le actiones de structura de tabella deberea esser celate." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Cela actiones de structura de tabella" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Monstra le servitor in un lista in loco de un menu a rolar." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Monstra servitores como un lista" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5619,11 +5633,11 @@ msgstr "" "Dishabilita le operationes massive de mantenentia de tabella, como optimisar " "o reparar le tabellas seligite de un base de datos." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Dishabilita le mantenentia multiple de tabella" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5631,38 +5645,38 @@ msgstr "" "Fixa le numero de secundas pro le qual un script es permittite executar " "([kbd]0[/kbd] pro nulle limite)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maxime tempore de execution" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Salveguarda como file" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Insimul de characteres del file" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compression" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5672,60 +5686,60 @@ msgstr "Compression" msgid "Put columns names in the first row" msgstr "Mitte nomines de columnas in le prime rango" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Columnas includite per" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Columnas prefixate per" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Reimplacia NULL con" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Remove characteres de CRLF intra columnas" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Columnas terminate per" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Rangos terminate per" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Edition de Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Patrono de nomine de base de datos" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Patrono de nomine de servitor" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Patrono de nomine de tabella" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5734,137 +5748,137 @@ msgstr "Patrono de nomine de tabella" msgid "Dump table" msgstr "Dump (discargamento) de tabella" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Include subtitulo de tabella" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Subtitulo de tabella" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Subtitulo continuate de tabella" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Clave de etiquetta" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Typo MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relationes" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Methodo de exportation" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Salveguarda sur le servitor" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Superscribe file(s) existente" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Memora patrono de nomine de file" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Adde valor de AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Include nomines de tabellas e columnas con virgulettas" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Modo de compatibilitate de SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "optiones de CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Creation/Actualisation/Controlo datos" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Usa insertiones retardate" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Dishabilita le verificationes sur le clave estranie" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exporta vistas como tabellas" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Adde %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Usa hexadecimal pro BINARY & BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Usa ignore inserts (ignora insertiones)" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Syntaxe de usar quando on inserta datos" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Longitude maxime de un query create" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Typo de exportation" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Include exportation in un transaction" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exporta tempore in UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Fortia connexion secur quando on usa phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Fortia connexion SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5872,142 +5886,142 @@ msgstr "" "Ordina elementos in le menu a rolar del claves externe, [kbd]content[/kbd] " "es le datos de referentia,[kbd]id[/kbd] es le valor del clave." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Ordine del clave externe del menu a rolar" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Un menu a rolar essera usate si on ha minus elementos presente." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Limite de clave externe" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Modo de navigation" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Personalisa modo de navigation." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Personalisa optiones predefinite." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Disveloppator" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Preferentias pro disveloppatores de phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Modo de modificar" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Personalisa le modo de modificar." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Exporta le valores predefinite" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Personalisa le optiones de exportar predefinite." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Characteristicas" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "General" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Fixa alcun optiones usate communemente." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importa valores predefinite" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Personalisa le optiones commun de importar predefinite." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importa / exporta" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Fixa le optiones de compression e le dossiers de importar e exportar." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Optiones pro monstrar base de datos." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Pannello de navigation" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Personalisa apparentia del pannello de navigation." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servitores" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Optiones pro monstrar servitores." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Optiones pro monstrar tabellas." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Pannello principal" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Altere preferentias principal" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Altere preferentias que on non pote poner in altere loco." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Titulos de pagina" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6016,19 +6030,19 @@ msgstr "" "[doc@cfg_TitleTable]documentation[/doc] pro vider catenas que on pote " "utilisar pro obtener valores special (magic strings)." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Fenestra de query" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Personalisa le optiones de fenestra de query" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Securitate" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6036,23 +6050,23 @@ msgstr "" "Pro favor tu nota que phpMyAdmin es solo un interfacie e su characteristicas " "non limita MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Preferentias basic" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Authentication" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Preferentias de authentication." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Configuration del servitor" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6060,15 +6074,15 @@ msgstr "" "Configuration avantiate de servitor, non modificar iste optiones a minus que " "tu sape lo que illos face." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Inserta parametros de connexion del servitor." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Immagazinage de configuration" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6078,11 +6092,11 @@ msgstr "" "characteristicas additional, tu vide [doc@linked-tables]phpMyAdmin " "configuration storage[/doc] in documentation." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Traciamento de modificationes" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6090,109 +6104,109 @@ msgstr "" "Traciamento de modificationes facite in le base de datos. Isto require " "immagazinage de configuration de phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Personalisa optiones de exportar" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Personalisa optiones predefinite de importar" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Personalisa pannello de navigation" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Personalisa pannello principal" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Queries de SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Quadro de Query de SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Personalisa ligamines monstrate in le quadros de Query de SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Preferentias de queries de SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Initiar" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Personalisa le pagina de initiar." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Structura de base de datos" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Selige qual detalios monstrar in le structura de base de datos (lista de " "tabellas)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Structura de tabella" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Preferentias del structura de tabella (lista de columnas)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Schedas" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Selige como tu vole que le schedas functiona." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Monstra le schema relational" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Grandor de papiro" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Campos de texto" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Personalisa le campos de ingresso de texto." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! texto" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Personalisa optiones predefinite" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Avisos" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Dishabilita alcun avisos monstrate per phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6200,15 +6214,15 @@ msgstr "" "Il habilita le compression [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] " "per operationes de importation e exportation." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Parametros extra pro iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6216,11 +6230,11 @@ msgstr "" "Si habilitate, phpMyAdmin continua computar queries de instruction-multiple " "anque si un query es fallente." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignora errores de instruction multiple" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6230,29 +6244,28 @@ msgstr "" "al limite de tempore. Isto poterea esser un bon modo pro importar files " "grande, totevia il pote interrumper transactiones." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Importation partial: permitte interruption" -#: libraries/config/messages.inc.php:336 -#| msgid "Disable foreign key checks" +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" "Temporaneemente dishabilita le verificationes sur le clave estranie quando " "on importa" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Non aborta quando on ha un error de INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Reimplacia tabella de datos con file" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6260,69 +6273,69 @@ msgstr "" "Formato predefinite, tu nota que iste lista depende del location (base de " "datos, tabella) e solmente SQL es sempre disponibile." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formato del file importate" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Usa parola clave LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Nomines de columna in le prime rango" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Non importa rangos vacue" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importa numerarios ($5.00 a 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importa percentages como proprie decimales (2.00% a .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Numero de queries de saltar ab initio." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Importation partial: salta queries" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non usa AUTO_INCREMENT pro le valor zero" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Stato initial pro glissatores" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Quante rangos on debe insertar in un vice." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Numero de rangos insertate" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Numero maxime de characteres monstrate in omne columna non numeric sur le " "vista de navigar." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Limita characteres de columna" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6333,11 +6346,11 @@ msgstr "" "servitor currente, Si on fixa isto a FALSE il es facile oblidar de abandonar " "(logout) altere servitores quando on connecte a servitores multiple." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Dele omne cookies quando on exi (logout)" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6345,11 +6358,11 @@ msgstr "" "Defini si le previe session de authentication deberea esser restaurate o non " "quando in modo de authentication de [kbd]cookie[/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Recorda nomine de usator" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6361,50 +6374,50 @@ msgstr "" "essera delite quando tu claude le fenestra del navigator. Isto es " "recommendate pro ambiente non digne de fide." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Memora cookie de authentication" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" "Defini quanto il debe esser longe (in secundas) le validitate de un cookie " "de authentication." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Validitate de cookie de authentication de accesso" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Duple grandor de textarea (area de texto) pro columnas de LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Un area de texto plus grande pro LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Maxime numero de characteres usate quando on monstra un query de SQL." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Maxime longor monstrate de SQL" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Usatores non pote fixar un valor major" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Maxime numero de base de datos monstrate in le lista de base de datos." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Maxime numero de base de datos" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6412,11 +6425,11 @@ msgstr "" "Le numero de elementos que on pote monstrar sur cata pagina super le prime " "nivello del arbore de navigation." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Maxime elementos sur le prime nivello" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6424,11 +6437,11 @@ msgstr "" "Le numero de elementos que on pote monstrar sur cata pagina del arbore de " "navigation." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Maxime elementos in un ramo" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6437,19 +6450,19 @@ msgstr "" "le insimul de exito contine plure rangos, ligamine de \"Previe\" e \"proxime" "\" essera monstrate." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Le maxime numero de rangos de monstrar" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Maxime numero de tabellas monstrate in le lista de tabella." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maxime numero de tabellas" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6457,43 +6470,43 @@ msgstr "" "Fixa le numero de bytes pro le qual un script es permittite allocar [kbd]32M" "[/kbd] ([kbd]0[/kbd] pro nulle limite)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Limite de memoria" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" "In le pannello de navigation, reimplacia le arbore de base de datos con un " "selector" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "monstra navigation de base de datos como arbore" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Ligamine con le pannello principal pro evidentiar le base de datos o tabella " "currente." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Monstra logo in le pannello de navigation." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Monstra logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL ubi le logo in le pannello de navigation punctara." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL del ligamine de logo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6501,28 +6514,28 @@ msgstr "" "Aperi le pagina de ligamine in le fenestra principal ([kbd]main[/kbd]) o in " "un nove ([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Objectivo de ligamine de logo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" "Selection de servitor de monstrator al culmine del pannello de navigation." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Monstra selection d servitores" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Objectivo pro icone de accesso rapide" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Objectivo pro icone de secunde accesso rapide" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6530,17 +6543,17 @@ msgstr "" "Define le minime numero de elementos (tabellas, vistas, routines e eventos) " "de monstrar in le quadro de filtro." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Minime numero de elementos de monstrar in le quadro de filtro" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" "Le numero minime de base de datos pro monstrar le quadro de filtrar base de " "datos" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6548,99 +6561,99 @@ msgstr "" "Elementos de gruppo in le arbore de navigation (determinate per le separator " "definite a basso)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Elementos de gruppo in le arbore" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Catena que separa base de datos in nivellos differente de arbore." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Separator de arbore de base de datos" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Catena que separa tabellas in differente nivellos de arbore." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Separator de arbore de tabellas" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maxime profunditate de arbore de tabellas" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Evidentia servitor sub le cursor del mus." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Habilita evidentiar" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" "Si offerer le possibilitate de expansion de un arbore in le pannello de " "navigation." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Habilita expansion de navigation de arbore" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Maxime numero de tabellas usate de recente;pone 0 pro dishabilitar lo." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Maxime numero de tabellas favorite; pone 0 pro dishabilitar lo." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Tabellas usate recentemente" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Istos es le ligamines pro Modificar, Copiar e Deler." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Ubi monstrar le ligamines de rango de tabellas" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Ordine natural" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Usa solo icones, solmente texto o ambes." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Barra de navigation de tabella" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Buffering de exito de GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6648,19 +6661,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Modo de ordinar predefinite" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Usa connexiones persistente per base de datos de MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Connexiones persistente" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6670,11 +6683,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tabellas de immagazinage de configuration de phpMyAdmin es mancante" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6682,11 +6695,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Aviso de differentia de Servitor/Bibliotheca" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6694,27 +6707,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Aviso de parola reservate de MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Como monstrar le schedas de menu" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Comom monstrar varie ligamines de action" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Protege columnas binari" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6725,107 +6738,107 @@ msgstr "" "utilisa functiones JS pro monstrar le chronologia de query (perdite quando " "on claude le fenestra)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Historia permanente de query" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Quante queries es mantenite in historia." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Longitude de historia de query" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Motor de recodificar" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Memora ordine de tabellas" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Modo de ordinar predefinite per le clave primari" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Repite capites" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Action discatenante modifica de grillia" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Monstra de modo relational" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Optiones pro monstrar" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Directorio ubi exportationes pote esser salveguardate sur le servitor." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Salveguarda dossier" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Lassa vacue si non usate." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Ordine de autorisation o permission de hospite" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Lassa vacue pro definition." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Regulas de autorisation o permission de hospite" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Permitte accessos sin un contrasigno" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Permitte accesso de nivello root (radice)" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Fuso horari de session" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" @@ -6833,17 +6846,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:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Sphera HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6853,19 +6866,19 @@ msgstr "" "hardware authentication[/a] (non locate in tu radice de documento; " "suggerite: /etc/swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "File de configuration de SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Methodo de authentication de usar." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Typo de authentication" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6873,11 +6886,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabella de marcatores de libro" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6885,31 +6898,31 @@ msgstr "" "Lassa vacue pro nulle commentos/typos mime de columna, proponite: [kbd]" "pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabella de information de columna" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Comprime connexion a servitor MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Comprime connexion" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Typo de connexion" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Contrasigno de usator de controlo" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6918,11 +6931,11 @@ msgstr "" "information disponibile sur [a@http://wiki.phpmyadmin.net/pma/controluser]" "wiki[/a]." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Usator de controlo" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6930,11 +6943,11 @@ msgstr "" "Un hospite alternative pro mantener le configuration de immagazinage: lassa " "vacue pro usar un hopite ja definite." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Hospite de controlo" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6944,15 +6957,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Porto de controlo" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Cela base de datos coincidente con le expression regular (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6960,15 +6973,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Dishabilita uso de INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Cela base de datos" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6976,23 +6989,23 @@ msgstr "" "Lassa vacue pro nulle supporto de historia de query SQL, proponite: [kbd]" "pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabella de chronologia de query de SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Nomine de hospite ubi le servitor de MySQL es executante." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Nomine de hospite servitor" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL de logout (abandono)" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -7000,15 +7013,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:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Maxime numero de preferentias de immagazinar" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Tabella de cercas salveguardate de QBE" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -7016,11 +7029,11 @@ msgstr "" "Lassa vacue pro nulle supporto de cercas QBE salveguardate, proponite: [kbd]" "pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Tabella central de columnas" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -7028,15 +7041,15 @@ msgstr "" "Lassa vacue pro necun supporto central de columnas, proponite: [kbd]" "pma__central_columns[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Essaya connecter sin contrasigno." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Connecte sin contrasigno" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7046,30 +7059,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Monstra solmente base de datos ab le lista" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Lassa vacue si non es usante config auth." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Contrasigno pro config auth" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "Schema PDF: tabella de paginas" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7080,22 +7093,22 @@ msgstr "" "information complete. Lassa vacue pro nulle supporto. Suggerite: [kbd]" "phpmyadmin[/kbd]." -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Nomine de base de datos" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Porto de servitor" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7103,11 +7116,11 @@ msgstr "" "Lassa vacue pro necun \"persistente\" recentemente usava tabellas trans " "sessiones, proponite: [kbd]pma__recent[/kbd]." -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Tabella usate recentemente" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7115,11 +7128,11 @@ msgstr "" "Lassa vacue pro necun \"persistente\" tabellas favorite trans sessiones, " "proponite: [kbd]pma__favorite[/kbd]." -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Tabellas favorite" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7127,11 +7140,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Tabella de relation" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7139,33 +7152,33 @@ msgstr "" "Vide [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typos de " "authentication[/a] pro un exemplo." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Nomine de session de signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL de signon" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Socket del servitor" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Habilita SSL pro le connexion a servitor MySQL." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Usa SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7173,11 +7186,11 @@ msgstr "" "Lassa vacue pro necun supporto de schema PDF, proponite: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Designator e Schema PDF: coordinatas de tabella" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7185,11 +7198,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Monstra tabella de columnas" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7197,11 +7210,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabella de preferentias de UI (Interfacie usator)" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7209,11 +7222,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Adde DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7221,11 +7234,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Adde DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7233,21 +7246,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Adde DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Declarationes de traciar" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7255,11 +7268,11 @@ msgstr "" "Lassa vacue pro necun supporto de traciar query SQL, proponite: [kbd]" "pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabella pro traciar le query SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7267,11 +7280,11 @@ msgstr "" "Si le mechanismo de traciar crea automaticamente versiones pro tabellas e " "vistas." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Crea automaticamente versiones" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7279,11 +7292,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabella de immagazinage de preferentias de usator" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7294,11 +7307,11 @@ msgstr "" "on lassa un de lor vacue on dishabilitara iste characteristica, suggerite: " "[kbd]pma__users[/kbd]." -#: libraries/config/messages.inc.php:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Tabula de usatores" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7309,11 +7322,11 @@ msgstr "" "on lassa un de lor vacue on dishabilitara iste characteristica, suggerite: " "[kbd]pma__users[/kbd]." -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Tabella de gruppos de usator" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7321,15 +7334,15 @@ msgstr "" "Lassa vacue pro dishabilitar characteristica de celar e monstrar elementos " "de navigation, proponite: [kbd]pma__navigationhiding[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Tabella de elementos de navigation celate" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Usator pro config auth" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7337,21 +7350,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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Nomine verbose de iste servitor" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Permitte monstrar omne rangos" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7362,47 +7375,47 @@ msgstr "" "fortemente in le file de configuration; isto non limita le habilitate de " "executar directemente le mesme commando." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Monstra modulo de modification de contrasigno" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Monstra modulo pro crear base de datos" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Monstra marca de tempore de creation" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Monstra marca de tempore de ultime actualisation" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Monstra marca de tempore de ultime verifica" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7410,27 +7423,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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Monstra typos de campo" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Monstra campos de function" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Si monstrar o celar adjutas." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Monstra adjuta" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7438,64 +7451,64 @@ msgstr "" "Monstra ligamine a exito [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a] ." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Monstra un ligamine a phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Monstra information detaliate del servitor MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Monstra queries de SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Cela quadro de query" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Monstra statisticas" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Ignora tabellas blocate" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Un aviso es monstrate sur le pagina principal si on releva Suhosin." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Aviso de Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7505,11 +7518,11 @@ msgstr "" "le valor de le arrangiamento de PHP session.gc_maxlifetime es minor que le " "valor de `LoginCookieValidity`." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Avis de validitate de cookie de authentication de accesso" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7518,11 +7531,11 @@ msgstr "" "evidentiate per areas de texto (*2) de query SQL e per le fenestra de query " "(*1.25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Columnas de area de texto" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7531,31 +7544,31 @@ msgstr "" "evidentiate per areas de texto (*2) de query SQL e per le fenestra de query " "(*1.25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Rangos de area de texto" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Titulo de fenestra de navigation quando nihil es seligite." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Titulo predefinite" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7567,27 +7580,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Directorio de incargar" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Permitte cerca intra le integre base de datos." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Usa cerca de base de datos" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7595,28 +7608,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Habilita le scheda del Disveloppator in preferentias" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Verifica le ultime version" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7628,11 +7641,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:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Url de proxy" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7643,19 +7656,19 @@ msgstr "" "le Authentication Basic. Necun altere typos de authentication nunc es " "supportate." -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Nomine de usator de proxy" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Le contrasigno per authenticar se con le proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Contrasigno de proxy" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7663,35 +7676,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Clave public pro reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Clave private pro reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Invia reportos de errores" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." @@ -7699,11 +7712,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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "Inserta queries de executar in console" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7711,7 +7724,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:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Habilita modo de Configuration Zero" @@ -7731,44 +7744,44 @@ msgstr "Authentication via HTTP" msgid "Signon authentication" msgstr "Authentication via signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV usante LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Folio de computo (SpreadSheet) de OpenDocument" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Rapide" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Personalisate" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Optiones de exportation de base de datos" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV pro datos MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Texto OpenDocument" @@ -7851,7 +7864,6 @@ msgid "New page" msgstr "Nove pagina" #: libraries/db_designer.lib.php:297 libraries/db_designer.lib.php:300 -#| msgid "Save page" msgid "Save page as" msgstr "Salveguarda pagina como" @@ -7978,20 +7990,20 @@ msgstr "Non pote computar rangos in un insimul de exito non tamponate" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Necun contrasigno" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Contrasigno:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Re-typa:" @@ -8129,8 +8141,8 @@ msgstr ", @TABLE@ devenira le nomine de tabella" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Iste valor es interpretate per usar %1$sstrftime%2$s, assi que tu pote usar " "catenas de formatation per le datas/tempore. Anque on potera adder le " @@ -8299,12 +8311,10 @@ msgstr "" "initiante ab le prime:" #: libraries/display_import.lib.php:332 -#| msgid "Options" msgid "Other Options:" msgstr "Altere optiones:" #: libraries/display_import.lib.php:338 -#| msgid "Disable foreign key checks" msgid "Disable foreign key check" msgstr "Dishabilita le verification sur le clave estranie" @@ -8690,11 +8700,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Documentation e ulterior information re PBXT pote esser trovate a %" -"sPrimeBase XT Home Page%s." +"Documentation e ulterior information re PBXT pote esser trovate a " +"%sPrimeBase XT Home Page%s." #: libraries/engines/pbxt.lib.php:138 msgid "Related Links" @@ -9159,7 +9169,7 @@ msgstr "Claude session" msgid "phpMyAdmin documentation" msgstr "Documentation de phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Recarga pannello de navigation" @@ -9814,8 +9824,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10039,7 +10049,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Hospite:" @@ -10965,22 +10975,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Nomine de usator:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nomine de usator" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Contrasigno" @@ -11008,10 +11018,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Hospite" @@ -11023,45 +11033,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Omne hospite" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Iste hospite" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Omne hospite" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11778,7 +11788,7 @@ msgstr "Necun" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Gruppo de Usator" @@ -11843,14 +11853,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11859,7 +11869,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11868,7 +11878,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11885,253 +11895,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Adde usator" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Usator" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Omne" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "Global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Revoca" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Adde le privilegios sur le sequente base(s) de datos:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nove" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13728,19 +13738,19 @@ msgstr "Selection de indice:" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Typo de indice:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Analysator (parser):" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Commento:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Trahe pro reordinar" @@ -14687,8 +14697,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14806,8 +14816,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/id.po b/po/id.po index 10eefc7390..a9c3073b4a 100644 --- a/po/id.po +++ b/po/id.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-02-18 05:23+0200\n" "Last-Translator: Yohanes Edwin \n" "Language-Team: Indonesian \n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.2-dev\n" "X-Poedit-Basepath: ../../..\n" @@ -68,7 +68,7 @@ msgstr "Komentar tabel:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "Kolom" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "Tautan ke" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "Kunci Utama" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "Tidak" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "Konfigurasi penyimpanan phpMyAdmin telah dinonaktifkan. %sCari masalah ini%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabel" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Baris" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Ukuran" @@ -371,9 +371,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -569,15 +569,15 @@ msgstr "Tambahkan geometri" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -610,11 +610,11 @@ msgstr "Parameter kurang lengkap" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Silahkan lihat %" -"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." +"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Silahkan lihat " +"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -699,7 +699,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Kembali" @@ -723,7 +723,7 @@ msgid "General Settings" msgstr "Pengaturan Umum" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Ubah Sandi" @@ -798,7 +798,7 @@ msgstr "Informasi versi:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentasi" @@ -1059,7 +1059,7 @@ msgstr "Tambah indek" msgid "Edit Index" msgstr "Mengedit Indeks" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Tambahkan %s kolom ke index" @@ -1086,7 +1086,7 @@ msgstr "Anda perlu menambahkan paling tidak satu kolom." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Pratinjau SQL" @@ -1115,12 +1115,12 @@ msgstr "Nama inang kosong!" msgid "The user name is empty!" msgstr "Nama pengguna kosong!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Kata sandi kosong!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Kata sandi tidak sama!" @@ -1321,7 +1321,7 @@ msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1610,7 +1610,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1823,7 +1823,7 @@ msgstr "Tampilkan kotak kueri" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2094,7 +2094,7 @@ msgstr "Isi titk data" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Abaikan" @@ -2289,7 +2289,7 @@ msgstr "Klik tanda panah ke bawah
untuk beralih visibilitas kolom." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Tampilkan semua" @@ -2398,7 +2398,7 @@ msgstr "Sembunyikan Panel" msgid "Show hidden navigation tree items." msgstr "Tampilkan navigasi pohon item tersembunyi." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main panel" @@ -2922,16 +2922,16 @@ msgid "Delete" msgstr "Hapus" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3069,7 +3069,7 @@ msgid "During current session" msgstr "Lewati galat saat ini" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3457,11 +3457,11 @@ msgstr "Kueri SQL Anda berhasil dieksekusi." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat %" -"sdokumentasi%s." +"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat " +"%sdokumentasi%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3495,6 +3495,7 @@ msgstr "Dengan pilihan:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3510,12 +3511,12 @@ msgstr "Ubah" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3711,7 +3712,7 @@ msgstr "" "untuk dibuang." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3726,11 +3727,11 @@ msgstr "Gambarkan" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3746,7 +3747,7 @@ msgstr "Struktur" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3772,9 +3773,9 @@ msgstr "Tambahkan" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Hak Akses" @@ -3836,9 +3837,9 @@ msgid "Central columns" msgstr "Kolom textarea" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Basis data" @@ -3949,7 +3950,7 @@ msgid "Recent" msgstr "Terbaru" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Tabel favorit" @@ -4020,7 +4021,7 @@ msgstr "Pengurutan" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4391,20 +4392,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"small floating-point number, mengizinkan nilai dari -3.402823466E+38 sampai -" -"1.175494351E-38, 0, dan 1.175494351E-38 sampai 3.402823466E+38" +"small floating-point number, mengizinkan nilai dari -3.402823466E+38 sampai " +"-1.175494351E-38, 0, dan 1.175494351E-38 sampai 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"double-precision floating-point number, mengizinkan nilai antara -" -"1.7976931348623157E+308 sampai -2.2250738585072014E-308, 0, dan " +"double-precision floating-point number, mengizinkan nilai antara " +"-1.7976931348623157E+308 sampai -2.2250738585072014E-308, 0, dan " "2.2250738585072014E-308 sampai 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4697,7 +4698,7 @@ msgstr "Batas ukuran: %s%s" msgid "MySQL said: " msgstr "MySQL menyatakan: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Jelaskan SQL" @@ -4709,7 +4710,7 @@ msgstr "Lewati Penjelasan SQL" msgid "Without PHP Code" msgstr "Kode PHP tidak ditemukan" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Buat kode PHP" @@ -4826,13 +4827,13 @@ msgstr "Deskripsi" msgid "Use this value" msgstr "Gunakan nilai ini" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5254,7 +5255,7 @@ msgid "Set value: %s" msgstr "Tetapkan nilai: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Kembalikan nilai bawaan" @@ -5377,22 +5378,22 @@ msgstr "" #: libraries/config/ServerConfigChecks.class.php:419 #, fuzzy, php-format #| msgid "" -#| "If using cookie authentication and %sLogin cookie store%s is not 0, %" -#| "sLogin cookie validity%s must be set to a value less or equal to it." +#| "If using cookie authentication and %sLogin cookie store%s is not 0, " +#| "%sLogin cookie validity%s must be set to a value less or equal to it." msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." msgstr "" -"JIka menggunakan otentikasi cookie dan %sLogin cookie store%s bukan 0, %" -"sLogin cookie validity%s harus diatur ke nilai kurang atau sama dengan itu." +"JIka menggunakan otentikasi cookie dan %sLogin cookie store%s bukan 0, " +"%sLogin cookie validity%s harus diatur ke nilai kurang atau sama dengan itu." #: libraries/config/ServerConfigChecks.class.php:426 #, fuzzy, php-format #| msgid "" -#| "If you feel this is necessary, use additional protection settings - %" -#| "shost authentication%s settings and %strusted proxies list%s. However, IP-" -#| "based protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#| "If you feel this is necessary, use additional protection settings - " +#| "%shost authentication%s settings and %strusted proxies list%s. However, " +#| "IP-based protection may not be reliable if your IP belongs to an ISP " +#| "where thousands of users, including you, are connected to." msgid "" "If you feel this is necessary, use additional protection settings - %shost " "authentication%s settings and %strusted proxies list%s. However, IP-based " @@ -5416,8 +5417,8 @@ msgstr "" "Anda mengatur [kbd]config[/kbd] tipe otentikasi dan termasuk username dan " "password untuk login otomatis, yang mana bukan pilihan yang tepat untuk host " "selalu aktif. Siapapun yang mengetahui atau menebak URL phpMyAdmin anda " -"dapat langsung mengakses panel phpMyAdmin anda. Set type%s %" -"sauthentication ke [kbd]cookie[/kbd] atau [kbd]http[/kbd]." +"dapat langsung mengakses panel phpMyAdmin anda. Set type%s " +"%sauthentication ke [kbd]cookie[/kbd] atau [kbd]http[/kbd]." #: libraries/config/ServerConfigChecks.class.php:440 #, php-format @@ -5709,24 +5710,36 @@ msgstr "Tab tersebut ditampilkan ketika memasuki suatu tabel." msgid "Default table tab" msgstr "Tab tabel bawaan" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Apit nama tabel dan kolom dengan tanda petik balik" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Apit nama tabel dan kolom dengan tanda petik balik" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Sebaiknya stuktur aksi tabel disembunyikan." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Sembunyikan stuktur aksi tabel" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 #, fuzzy msgid "Show server listing as a list instead of a drop down." msgstr "Tampilkan daftar server dalam bentuk daftar dan bukan tarik-turun." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Tampilkan server dalam bentuk daftar" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5734,11 +5747,11 @@ msgstr "" "Nonaktifkan operasi pemeliharaan tabel massa, seperti mengoptimalkan atau " "memperbaiki tabel yang dipilih dari database." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Nonaktifkan pemeliharaan banyak tabel" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5746,39 +5759,39 @@ msgstr "" "Atur jumlah detik yang diperbolehkan untuk menjalankan script ([kbd]0[/kbd] " "untuk tak terbatas)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Waktu eksekusi maksimum" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Tambahkan statement %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Simpan sebagai berkas" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Set karakter berkas" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Kompresi" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5788,60 +5801,60 @@ msgstr "Kompresi" msgid "Put columns names in the first row" msgstr "Masukkan nama kolom pada baris pertama" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Kolom diapit oleh" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Kolom diloloskan oleh" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Ganti NULL dengan" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Hapus karakter CRLF dalam kolom" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Kolom diakhiri oleh" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Baris diakhir dengan" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Versi Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Templat nama basis data" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Templat nama server" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Templat nama tabel" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5850,140 +5863,140 @@ msgstr "Templat nama tabel" msgid "Dump table" msgstr "Tabel dump" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Masukkan judul halaman tabel" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Judul halaman" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Lanjutan dari judul halaman tabel" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Kunci nama" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Jenis MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Tabel Relasi" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Metode ekspor" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Simpan di server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Timpa berkas yang ada" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Ingat templat nama berkas" # Imperative verb -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Apit nama tabel dan kolom dengan tanda petik balik" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Modus kompatibilitas SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Opsi CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Tanggal Pembuatan/Pembaruan/Pemeriksaan" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Gunakan perintah INSERT memperlambat" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Tanpa pemeriksaan kunci asing" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Mengekspor tampilan sebagai tabel" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Tambahkan %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Gunakan heksadesimal untuk BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Gunakan INSERT dengan IGNORE" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Sintaks yang digunakan sewaktu menambahkan data" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Panjang maksimum kueri yang dibuat" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Jenis ekspor" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Jalankan ekspor dalam transaksi" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Ekspor waktu dalam UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Paksa koneksi aman sewaktu menggunakan phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Paksa koneksi SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5991,142 +6004,142 @@ msgstr "" "Urutkan agar item dalam kotak dropdown foreign-key, [kbd]konten[/kbd] adalah " "data direferensikan, [kbd]id[/kbd] adalah nilai kunci." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Urutan tarik turun foreign key" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Sebuah dropdown akan digunakan jika sedikit item yang ditampilkan." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Batas foreign key" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Modus jelajah" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Atur mode jelajah." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Sesuaikan opsi bawaan." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "Data CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Pengembang" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Pengaturan untuk para pengembang phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Modus edit" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Atur mode edit." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Bawaan ekspor" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Atur opsi bawaan ekspor." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Fitur" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Umum" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Atur beberapa opsi yang umum dipakai." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Bawaan impor" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Atur opsi impor umum bawaan." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Impor / ekspor" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Tetapkan opsi kompresi dan direktori impor dan ekspor." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Opsi tampilan basis data." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Panel navigasi" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Atur tampilan panel navigasi." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Opsi tampilan server." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Opsi tampilan tabel." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Panel utama" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Pengaturan utama lain" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Pengaturan yang tidak masuk di mana pun." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Judul halaman" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6135,19 +6148,19 @@ msgstr "" "untuk magic strings yang dapat digunakan untuk mendapatkan nilai-nilai " "khusus." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Atur opsi jendela kueri" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Keamanan" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6155,23 +6168,23 @@ msgstr "" "Sebagai catatan bahwa phpMyAdmin hanyalah antarmuka pengguna dan fitur-" "fiturnya tidak membatasi MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Pengaturan dasar" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autentikasi" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Pengaturan otentikasi." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Konfigurasi server" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6179,15 +6192,15 @@ msgstr "" "Konfigurasi mahir server, jangan mengubah pilihan-pilihan berikut kecuali " "Anda tahu untuk apa penggunaannya." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Masukkan parameter untuk koneksi server." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Penyimpanan konfigurasi" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6197,11 +6210,11 @@ msgstr "" "akses ke berbagai fitur tambahan, lihat dokumentasi [doc@linked-tables]" "konfigurasi penyimpanan phpMyAdmin[/doc]." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Pelacakan perubahan" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6209,107 +6222,107 @@ msgstr "" "Pelacakan perubahan yang dilakukan dalam database. Membutuhkan penyimpanan " "konfigurasi phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Sesuaikan opsi ekspor" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Atur bawaan impor" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Atur panel navigasi" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Atur panel utama" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Kueri SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Kotak Kueri SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Atur tautan yang ditampilkan di kotak Kueri SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Pengaturan kueri SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Awal" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Atur halaman awal." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Stuktur basis data" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "Pilih detail mana untuk menampilkan struktur database (daftar tabel)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Struktur tabel" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Pengaturan untuk struktur tabel (daftar kolom)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Tab" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Pilih cara kerja tab yang Anda inginkan." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Tampilkan skema relasi" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Ukuran kertas" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Isian teks" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Sesuaikan isian masukan teks." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Teks Texy!" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Sesuaikan opsi bawaan" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Peringatan" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Nonaktifkan beberapa peringatan dari phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6317,15 +6330,15 @@ msgstr "" "Aktifkan kompresi [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] untuk " "operasi impor dan ekspor." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Parameter tambahan untuk iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6333,11 +6346,11 @@ msgstr "" "Jika diaktifkan, phpMyAdmin terus menjalankan multi-statmen kueri bahkan " "jika salah satu query gagal." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Abaikan galat perintah jamak" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6347,28 +6360,28 @@ msgstr "" "ini cara yang baik ketika mengimpor file yang besar, sehingga transaksi " "dapat dibatalkan." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Impor parsial: izinkan interupsi" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Tanpa pemeriksaan kunci asing" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Jangan gugurkan sewaktu galat INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Ganti data tabel dengan berkas" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6376,69 +6389,69 @@ msgstr "" "Format standar, sadari bahwa daftar ini tergantung pada lokasi (database, " "tabel) dan hanya ketika SQL tersedia." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Format berkas impor" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Gunakan kata kunci LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Nama kolom pada baris pertama" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Jangan impor baris kosong" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Impor mata uang ($5.00 menjadi 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Impor persentase menjadi nilai desimal (12.00% menjadi .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Jumlah kueri yang dilewati dari awal." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Impor parsial: lewati kueri" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Kondisi awal slider" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Jumlah baris yang dapat ditambahkan dalam satu waktu." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Jumlah baris tambahan" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Jumlah maksimum karakter yang ditunjukkan pada kolom non-angka pada mode " "jelajah." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Batas karakter kolom" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6449,11 +6462,11 @@ msgstr "" "membuatnya mudah untuk melupakan log out dari server lain ketika terhubung " "ke beberapa server." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Hapus semua kuki sewaktu keluar" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6465,11 +6478,11 @@ msgstr "" "Tentukan apakah login sebelumnya harus diingat atau tidak dalam mode " "otentikasi cookie." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Ingat nama pengguna" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6481,48 +6494,48 @@ msgstr "" "dan akan dihapus segera setelah Anda menutup jendela browser. Hal ini " "direkomendasikan untuk lingkungan tak terpercaya." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Penyimpanan kuki masuk" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Tentukan berapa lama (dalam detik) cookie login valid." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Validitas kuki masuk" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Ukuran Double textarea untuk kolom LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Textarea lebih besar untuk LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Jumlah maksimum karakter yang dipakai sewaktu menampilkan kueri SQL." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Panjang SQL maksimum yang ditayangkan" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Pengguna tidak dapat menetapkan nilai yang lebih tinggi" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Jumlah maksimum database yang ditampilkan dalam daftar database." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Basis data maksimum" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " @@ -6533,24 +6546,24 @@ msgid "" msgstr "" "Jumlah item yang dapat ditampilkan pada setiap halaman dari pohon navigasi." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum items in branch" msgid "Maximum items on first level" msgstr "Item maksimal di cabang" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" "Jumlah item yang dapat ditampilkan pada setiap halaman dari pohon navigasi." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Item maksimal di cabang" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6558,19 +6571,19 @@ msgstr "" "Jumlah baris yang ditampilkan saat browsing hasil set. Jika hasil set berisi " "lebih dari satu baris, tautan \"Previous\" and \"Next\" akan ditampilkan." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Jumlah maksimum baris yang ditampilkan" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Jumlah maksimum tabel yang ditampilkan pada daftar tabel." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Tabel maksimum" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6578,44 +6591,44 @@ msgstr "" "Jumlah bytes script yang diperbolehkan untuk mengalokasikan, misalnya. [kbd]" "32M[/kbd] ([kbd]0[/kbd] untuk tak terbatas)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Limit memori" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Tampilkan navigasi pohon item tersembunyi." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Link with main panel by highlighting the current database or table." msgstr "" "Menghubungkan dengan panel utama dengan menyorot database saat ini atau " "tabel." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Tampilkan logo di panel navigasi." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Tampilkan logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "Arahkan URL untuk logo pada panel navigasi." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL tautan logo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6623,29 +6636,29 @@ msgstr "" "Buka halaman tertaut di jendela utama ([kbd]main[/kbd]) atau jendela baru " "([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Sasaran tautan logo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Tampilkan pilihan server di bagian atas panel navigasi." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Tampilkan pilihan server" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Target ikon akses cepat" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Target ikon akses cepat" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6653,118 +6666,118 @@ msgstr "" "Tentukan jumlah minimum item (tabel, view, routines dan event) untuk " "menampilkan kotak filter." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Jumlah minimum item yang ditampilkan di kotak tabel filter" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Jumlah minimum database yang ditampilkan di kotak tabel filter" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" "Item Group di pohon navigasi (ditentukan oleh pemisah definisikan di bawah)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Item Group di pohon" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" "String yang memisahkan basis data ke dalam tingkat hierarki yang berbeda." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Pemisah hierarki basis data" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "String yang memisahkan tabel ke dalam tingkat hierarki yang berbeda." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Pemisah hierarki tabel" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Kedalaman hierarki tabel maksimum" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Sorot server yang dikenai kursor." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Aktifkan penyorotan" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Apakah akan menonaktifkan kemungkinan ekspansi database atau tidak." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Bar tabel navigasi" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Jumlah maksimum tabel yang terakhir digunakan; atur 0 untuk menonaktifkannya." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable." msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "Jumlah maksimum tabel yang terakhir digunakan; atur 0 untuk menonaktifkannya." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Tabel yang terakhir digunakan" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Berikut ini adalah tautan Edit, Salin, dan Hapus." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Tempat menampilkan tautan baris tabel" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Urutan alami" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Gunakan hanya ikon, hanya teks, atau keduanya." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Bar tabel navigasi" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Penyanggaan keluaran GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6772,19 +6785,19 @@ msgstr "" "[kbd]SMART[/kbd] - yaitu urutan untuk kolom jenis TIME, DATE, DATETIME dan " "TIMESTAMP, urutan ascending dan sebaliknya." -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Urutan bawaan" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Gunakan koneksi persisten ke basis data MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Koneksi persisten" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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 +6807,11 @@ msgstr "" "jika kebutuhan tabel untuk penyimpanan konfigurasi phpMyAdmin tidak " "ditemukan." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6806,11 +6819,11 @@ msgstr "" "Nonaktifkan peringatan bawaan yang ditampilkan ketika terdeteksi perbedaan " "antara pustaka MySQL dan server." -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Server/library perbedaan peringatan" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6818,27 +6831,27 @@ msgstr "" "Nonaktifkan peringatan bawaan yang ditampilkan sewaktu nama kolom dalam " "tabel tabel telah dipesan oleh MySQL." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Peringatan! kata telah digunakan MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Atur tampilan tab menu" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Bagaimana menampilkan berbagai link tindakan" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Nonaktifkan pengeditan kolom BLOB dan BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Lindungi kolom biner" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6848,129 +6861,129 @@ msgstr "" "konfigurasi phpMyAdmin). Jika dinonaktifkan, ini menggunakan JS-routines " "untuk menampilkan riwayat query(hilang ketika jendela ditutup)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Riwayat kueri permanen" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Jumlah query yang disimpan dalam riwayat." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Panjang riwayat kueri" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Mesin pengode ulang" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Ingat urutan tabel" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 #, fuzzy msgid "Default sort order for tables with a primary key." msgstr "Urutan default untuk tabel dengan primary key." -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Urutan bawaan" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Ulangi judul" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Pengeditan Grid: trigger action" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Kolom tampilan relasi" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Opsi tampilan server." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Pengeditan Grid: Simpan semua sel yang diedit sekaligus" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Direktori penyimpanan hasil ekspor di server." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Direktori penyimpanan" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Biarkan kosong jika tidak digunakan." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Urutan otorisasi inang" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Biarkan kosong untuk menggunakan bawaan." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Aturan otorisasi inang" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Izinkan masuk tanpa sandi" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Izinkan masuk root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Nilai sesi" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6980,19 +6993,19 @@ msgstr "" "SweKey [/a](tidak terletak di document root Anda, disarankan: /etc/swekey." "conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Berkas config SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Metode autentikasi yang dipakai." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Jenis autentikasi" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -7000,11 +7013,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabel markah" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -7012,32 +7025,32 @@ msgstr "" "Biarkan kosong untuk tanpa kolom komentar/mime type, saran: [kbd]" "pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabel informasi kolom" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Kompres koneksi ke server MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Pampatkan koneksi" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Jenis koneksi" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Sandi pengguna pengendali" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -7046,11 +7059,11 @@ msgstr "" "informasi lebih lanjut yang tersedia pada [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki[/a]." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Pengguna pengendali" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -7058,11 +7071,11 @@ msgstr "" "Sebuah host alternatif untuk memegang penyimpanan konfigurasi; biarkan " "kosong untuk menggunakan host yang telah ditetapkan." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Inang pengendali" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -7072,15 +7085,15 @@ msgstr "" "biarkan kosong untuk menggunakan port bawaan, atau port yang telah " "ditentukan, jika controlhost adalah host yang sama." -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Port kontrol" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Sembunyikan pencocokan ekspresi reguler database(PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7089,15 +7102,15 @@ msgstr "" "bugs/2606/]PMA bug tracker[/a] dan [a@http://bugs.mysql.com/19588]MySQL Bugs" "[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Noaktifkan penggunaan INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Sembunyikan basis data" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -7105,23 +7118,23 @@ msgstr "" "Biarkan kosong untuk tanpa dukungan riwayat kueri SQL, saran: [kbd]" "pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabel riwayat kueri SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Nama host yang menjalankan server MySQL." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Nama inang server" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL keluar" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -7129,17 +7142,17 @@ msgstr "" "Batas jumlah preferensi tabel yang disimpan dalam database, catatan terlama " "akan dihapus secara otomatis." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Jumlah maksimal preferensi tabel untuk menyimpan" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "Lihat tabel status slave" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7151,13 +7164,13 @@ msgstr "" "Biarkan kosong agar tidak mendukung skema PDF, saran: [kbd]pma__pdf_pages[/" "kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "Kolom textarea" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7169,15 +7182,15 @@ msgstr "" "Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, " "saran: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Coba koneksi tanpa sandi." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Tersambung tanpa sandi" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 #, fuzzy msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " @@ -7188,30 +7201,30 @@ msgstr "" "Anda ingin menggunakan contoh literal, yaitu gunakan [kbd]'my\\_db'[/kbd] " "dan bukan [kbd]'my_db'[/kbd]." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Tampilkan hanya basis data terdaftar" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Biarkan kosong jika tidak menggunakan config auth." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Sandi untuk autentikasi config" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "Skema PDF: tabel halaman" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7221,21 +7234,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Nama basis data" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Porta server" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7247,11 +7260,11 @@ msgstr "" "Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, " "saran: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Tabel yang baru digunakan" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7263,13 +7276,13 @@ 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 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Tabel favorit" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7281,11 +7294,11 @@ msgstr "" "Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, " "saran: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Tabel relasi" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7293,35 +7306,35 @@ msgstr "" "Untuk contoh lihat [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "authentication types[/a]." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Nama sesi Signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL Signon" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Socket server" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Gunakan SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7333,13 +7346,13 @@ msgstr "" "Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, " "saran: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "Skema PDF: koordinat tabel" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7351,11 +7364,11 @@ 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 msgid "Display columns table" msgstr "Tabel kolom tampilan" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7367,11 +7380,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 "UI preferences table" msgstr "Tabel preferensi UI" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 #, fuzzy msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " @@ -7380,11 +7393,11 @@ msgstr "" "Apakah DATABASE DROP JIKA ada pernyataan akan ditambahkan sebagai baris " "pertama untuk log saat membuat database." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Tambahkan DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 #, fuzzy msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " @@ -7393,11 +7406,11 @@ msgstr "" "Apakah TABLE DROP JIKA ada pernyataan akan ditambahkan sebagai baris pertama " "untuk log saat membuat tabel." -#: libraries/config/messages.inc.php:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Tambahkan DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 #, fuzzy msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " @@ -7406,20 +7419,20 @@ msgstr "" "Apakah DROP sebuah VIEW JIKA ada pernyataan akan ditambahkan sebagai baris " "pertama untuk log saat membuat tampilan." -#: libraries/config/messages.inc.php:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Tambahkan DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 #, 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Statement untuk dilacak" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7431,11 +7444,11 @@ msgstr "" "Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, " "saran: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabel pelacakan kueri SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 #, fuzzy msgid "" "Whether the tracking mechanism creates versions for tables and views " @@ -7444,11 +7457,11 @@ msgstr "" "Apakah mekanisme pelacakan menciptakan versi untuk tabel dan tampilan secara " "otomatis." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Buat versi secara otomatis" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7460,11 +7473,11 @@ msgstr "" "Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, " "saran: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabel penyimpanan preferensi pengguna" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 #, fuzzy msgid "" "Both this table and the user groups table are required to enable the " @@ -7475,13 +7488,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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Gunakan Tabel" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 #, fuzzy msgid "" "Both this table and the users table are required to enable the configurable " @@ -7492,13 +7505,13 @@ msgstr "" "dikonfigurasi; Meninggalkan salah satu dari mereka kosong akan menonaktifkan " "fitur ini, disarankan: [kbd] pma__usergroups [/ kbd]." -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Gunakan Host Table" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7510,16 +7523,16 @@ msgstr "" "Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, " "saran: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 #, fuzzy msgid "Hidden navigation items table" msgstr "Tersembunyi tabel item navigasi" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Pengguna autentikasi config" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7527,21 +7540,21 @@ msgstr "" "Deskripsi server yang lebih jelas. Biarkan kosong untuk menampilkan nama " "inang saja." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Nama deskriptif server" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Izinkan tampilan semua baris" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -7553,28 +7566,28 @@ msgstr "" "konfigurasi; ini tidak membatasi kemampuan untuk menjalankan perintah yang " "sama secara langsung." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Tampilkan formulir penggantian sandi" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Tampilkan formulir pembuatan basis data" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 #, 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:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show more actions" msgid "Show Creation timestamp" msgstr "Tampilkan tindakan lain" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 #, fuzzy msgid "" "Show or hide a column displaying the Last update timestamp for all tables." @@ -7582,12 +7595,12 @@ msgstr "" "Menampilkan atau menyembunyikan kolom menampilkan timestamp Terakhir " "diperbaharui untuk semua tabel." -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 #, fuzzy msgid "Show Last update timestamp" msgstr "Tampilkan pembaruan timestamp terakhir" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 #, fuzzy msgid "" "Show or hide a column displaying the Last check timestamp for all tables." @@ -7595,13 +7608,13 @@ msgstr "" "Menampilkan atau menyembunyikan kolom menampilkan cek timestamp terakhir " "untuk semua tabel." -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy #| msgid "Show master status" msgid "Show Last check timestamp" msgstr "Tampilkan status master" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 #, fuzzy msgid "" "Defines whether or not type fields should be initially displayed in edit/" @@ -7610,31 +7623,31 @@ msgstr "" "Mendefinisikan apakah atau tidak ketik ladang harus awalnya ditampilkan " "dalam mode edit / insert." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Tampilkan jenis isian" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Tampilkan isian fungsi" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, 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:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Tampilkan petunjuk" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7646,15 +7659,15 @@ msgstr "" "Tampilkan tautan untuk melihat hasil [a@http://php.net/manual/function." "phpinfo.php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Tampilkan tautan phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Tampilkan informasi detail server MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." @@ -7662,11 +7675,11 @@ msgstr "" "Mendefinisikan apakah query SQL yang dihasilkan oleh phpMyAdmin harus " "ditampilkan." -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Tampilkan kueri SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 #, fuzzy msgid "" "Defines whether the query box should stay on-screen after its submission." @@ -7674,24 +7687,24 @@ msgstr "" "Mendefinisikan apakah kotak pertanyaan harus tinggal di layar setelah " "penyerahan." -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" msgstr "Sembunyikan kotak kueri" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Tampilkan statistik" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy msgid "" "Mark used tables and make it possible to show databases with locked tables." @@ -7699,21 +7712,21 @@ msgstr "" "Mark menggunakan tabel dan memungkinkan untuk menampilkan database dengan " "tabel terkunci." -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Lewati tabel terkunci" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 #, fuzzy #| msgid "A warning is displayed on the main page if Suhosin is detected" msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Menampilkan peringatan pada halaman utama jika Suhosin terdeteksi" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Peringatan Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7726,13 +7739,13 @@ msgstr "" "Nonaktifkan peringatan bawaan yang ditampilkan sewaktu nama kolom dalam " "tabel tabel telah dipesan oleh MySQL." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Validitas kuki masuk" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 #, fuzzy msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " @@ -7741,11 +7754,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:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Kolom textarea" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 #, fuzzy msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " @@ -7754,35 +7767,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:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Baris textarea" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 #, 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:784 +#: libraries/config/messages.inc.php:786 #, 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Judul bawaan" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "Judul jendela peramban sewaktu server dipilih." -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "Judul jendela peramban ketika tabel dipilih." -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 #, fuzzy msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " @@ -7795,27 +7808,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Daftar proksi tepercaya untuk allow/deny IP" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "Direktori server tempat mengunggah berkas ekspor." -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Direktori unggahan" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Mengizinkan pencarian terhadap seluruh basis data." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Gunakan pencarian basis data" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7823,26 +7836,26 @@ msgstr "" "Ketika dinonaktifkan, pengguna tidak dapat mengatur pilihan apapun di bawah " "ini, lepas centang kotak di sebelah kanan." -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Aktifkan tab pengembang dalam pengaturan" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Periksa versi terbaru" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Aktifkan pemeriksaan versi terbaru pada halaman utama phpMyAdmin." -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7854,11 +7867,11 @@ msgstr "" "jika server yang terinstal phpMyAdmin tidak memiliki akses langsung ke " "internet. Formatnya adalah: \"hostname:portnumber\"." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Alamat proxy" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7868,19 +7881,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Nama Pengguna Proxy" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Password untuk otentikasi proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Password proxy" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7888,47 +7901,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Kunci publik untuk reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Kunci privat untuk reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "Pilih aksi default saat mengirim laporan kesalahan." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Kirim laporan kesalahan" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Kueri tereksekusi" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 #, fuzzy msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " @@ -7937,7 +7950,7 @@ msgstr "" "Aktifkan mode Zero Configuration yang memungkinkan anda mengatur phpMyAdmin " "tabel penyimpanan konfigurasi otomatis." -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7959,44 +7972,44 @@ msgstr "Autentikasi HTTP" msgid "Signon authentication" msgstr "Autentikasi signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV menggunakan LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Lembar sebar OpenDocument" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Cepat" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Kustom" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opsi ekspor basis data" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV untuk data MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Teks OpenDocument" @@ -8235,20 +8248,20 @@ msgstr "Tidak bisa menghitung baris dalam hasil set unbuffered" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Kata Sandi tidak ditetapkan" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Kata Sandi:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Ketik ulang:" @@ -8387,8 +8400,8 @@ msgstr ", @TABLE@ akan menjadi nama tabel" #, fuzzy, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Nilai ini ditafsir menggunakan %1$sstrftime%2$s, sehingga Anda dapat " "menggunakan format string waktu. Tambahan ditransformasi sehingga menjadi: " @@ -8984,8 +8997,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, fuzzy, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentasi dan informasi lebih lanjut mengenai PBXT dapat ditemukan pada %s " "PrimeBase XT Halaman %s." @@ -9490,7 +9503,7 @@ msgstr "Keluar" msgid "phpMyAdmin documentation" msgstr "Dokumentasi phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -10260,11 +10273,11 @@ msgstr "Selamat Datang di %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan %1" -"$ssetup script%2$s untuk membuatnya." +"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan " +"%1$ssetup script%2$s untuk membuatnya." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10508,7 +10521,7 @@ msgstr "Masukkan nama kolom pada baris pertama" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11617,7 +11630,7 @@ msgstr "" "Jika tidak, silakan tambahkan baris berikut ke dalam seksi [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11625,16 +11638,16 @@ msgstr "Nama pengguna" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nama pengguna" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Kata Sandi" @@ -11664,10 +11677,10 @@ msgstr "ID Server" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Inang" @@ -11679,40 +11692,40 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Semua inang" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Inang Ini" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Setiap pengguna" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Gunakan text field" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Gunakan Host Table" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 #, fuzzy msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -11722,7 +11735,7 @@ msgstr "" "tersimpan dalam tabel host yang digunakan sebagai gantinya." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Ketik ulang" @@ -12504,7 +12517,7 @@ msgstr "Tidak ada" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Grup pengguna" @@ -12579,14 +12592,14 @@ msgstr "Membatasi jumlah koneksi simultan yang dapat dibuat pengguna." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Hak akses khusus tabel" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12597,7 +12610,7 @@ msgid "Administration" msgstr "Administrasi" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Hak akses global" @@ -12608,7 +12621,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Hak akses khusus basis data" @@ -12627,18 +12640,18 @@ msgstr "" "Mengizinkan untuk menambah pengguna dan hak akses tanpa harus memuat ulang " "tabel hak akses." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Informasi Masuk" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Gunakan text field" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 #, fuzzy msgid "" "An account already exists with the same username but possibly a different " @@ -12647,231 +12660,231 @@ msgstr "" "Account yang sudah ada dengan nama pengguna yang sama tapi mungkin nama host " "yang berbeda." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Jangan ubah Kata Sandi" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Sukses mengubah Kata Sandi untuk %s ." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anda telah mencabut hak akses untuk %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Tambahkan pengguna" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Basis data untuk pengguna" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Buat basis data dengan nama yang sama dan beri semua hak." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Berikan semua hak untuk basis data \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Pengguna memiliki akses ke \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Pengguna %s telah ditambahkan." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Pengguna" # Table column to indicate if the user able to grant a privilege -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Pemberi Izin" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 #, fuzzy msgid "Not enough privilege to view users." msgstr "Hak akses tidak cukup untuk melihat pengguna." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Pengguna tidak ditemukan." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Semua" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "khusus basis data" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 #, fuzzy msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "khusus basis data" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Edit Hak Akses" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Cabut" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy msgid "Edit user group" msgstr "Edit server" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… mempertahankan yang lama." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… hapus yang lama dari User Table." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… cabut seluruh hak yang aktif, kemudian hapuskan yang lama." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… hapuskan yang lama dari tabel pengguna, kemudian muat ulang hak akses." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Ubah Informasi Masuk / Salin Pengguna" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Buat pengguna baru dengan hak akses yang sama dan …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Hak akses khusus kolom" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Tambahkan hak akses pada basis data berikut" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Wildcard _ dan % sebaiknya diakhiri dengan tanda \\ untuk mengunakannya " "secara harfiah." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Tambahkan hak akses pada tabel berikut" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Hapus pengguna yang dipilih" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Cabut semua hak akses dari pengguna dan hapus setelahnya." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Hapus basis data yang memiliki nama yang sama dengan pengguna." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Memuat hak akses" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Sukses menghapus pengguna yang dipilih." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah memperbarui hak akses untuk %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Menghapus %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Hak akses berhasil dimuat ulang." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Hak Akses untuk %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Baru" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Edit Hak Akses" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 #, fuzzy msgid "" "Note: You are attempting to edit privileges of the user with which you are " @@ -12879,17 +12892,17 @@ msgid "" msgstr "" "Catatan: Anda mencoba untuk mengedit hak-hak user yang Anda sedang login." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Ikhtisar pengguna" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " "tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " @@ -12897,11 +12910,11 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." @@ -14919,21 +14932,21 @@ msgstr "Besar singgahan indeks" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Jenis indeks:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Pengguna:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Komentar:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15117,8 +15130,8 @@ msgstr "Tidak ada data" #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -"Tampilkan %1$s berdasarkan tanggal dari %2$s sampai %3$s oleh pengguna %4$s %" -"5$s" +"Tampilkan %1$s berdasarkan tanggal dari %2$s sampai %3$s oleh pengguna %4$s " +"%5$s" #: libraries/tracking.lib.php:642 msgid "SQL dump (file download)" @@ -16064,8 +16077,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, fuzzy, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Rasio lancar gratis permintaan memori cache untuk ukuran total cache query " "adalah %s%%. Ini harus di atas 80%%" @@ -16234,8 +16247,8 @@ msgstr "" #| "Rate of temporary tables being written to disk: %s, this value should be " #| "less than 1 per hour" msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "Tingkat pembuatan tabel temporer ke diska: %s, nilai ini hasul kurang dari 1 " "per jam" diff --git a/po/it.po b/po/it.po index 3be87fd927..9ce99d9121 100644 --- a/po/it.po +++ b/po/it.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-02-07 14:23+0200\n" "Last-Translator: Marco Pozzato \n" "Language-Team: Italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2-dev\n" @@ -67,7 +67,7 @@ msgstr "Commenti alla tabella:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Colonna" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Collegamenti a" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Primaria" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "No" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "ragione%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabella" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Righe" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Dimensione" @@ -373,9 +373,9 @@ msgstr "Stato" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -570,15 +570,15 @@ msgstr "Aggiungi una geometria" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -611,8 +611,8 @@ msgstr "Parametri incompleti" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Stai probabilmente cercando di caricare sul server un file troppo grande. " "Fai riferimento alla %sdocumentazione%s se desideri aggirare questo limite." @@ -704,7 +704,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Indietro" @@ -728,7 +728,7 @@ msgid "General Settings" msgstr "Impostazioni Generali" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Cambia password" @@ -803,7 +803,7 @@ msgstr "Informazioni sulla versione:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentazione" @@ -939,8 +939,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Sul server è in esecuzione Suhosin. Controlla la documentazione: %" -"sdocumentation%s per possibili problemi." +"Sul server è in esecuzione Suhosin. Controlla la documentazione: " +"%sdocumentation%s per possibili problemi." #: js/messages.php:29 libraries/import.lib.php:125 sql.php:143 msgid "\"DROP DATABASE\" statements are disabled." @@ -1069,7 +1069,7 @@ msgstr "Aggiungi Indice" msgid "Edit Index" msgstr "Modifica Indice" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Aggiungi %s campo/i all'indice" @@ -1102,7 +1102,7 @@ msgstr "Devi aggiungere almeno un campo." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Anteprima SQL" @@ -1131,12 +1131,12 @@ msgstr "Il nome di host è vuoto!" msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "La password non coincide!" @@ -1338,7 +1338,7 @@ msgstr "Aggiungi almeno una variabile alla serie!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1635,7 +1635,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1850,7 +1850,7 @@ msgstr "Mostra riquadro query SQL" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2124,7 +2124,7 @@ msgstr "Contenuto del punto" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignora" @@ -2314,7 +2314,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Mostra tutti" @@ -2425,7 +2425,7 @@ msgstr "Nascondi pannello" msgid "Show hidden navigation tree items." msgstr "Mostra elementi nascosti dell'albero di navigazione." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main panel" @@ -2946,16 +2946,16 @@ msgid "Delete" msgstr "Elimina" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3094,7 +3094,7 @@ msgid "During current session" msgstr "Salta l'errore corrente" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3485,8 +3485,8 @@ msgstr "La query SQL è stata eseguita con successo." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." @@ -3523,6 +3523,7 @@ msgstr "Se selezionati:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3538,12 +3539,12 @@ msgstr "Modifica" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3738,7 +3739,7 @@ msgstr "" "possibilmente, essere rimosso." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3753,11 +3754,11 @@ msgstr "Vista" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3773,7 +3774,7 @@ msgstr "Struttura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3799,9 +3800,9 @@ msgstr "Inserisci" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegi" @@ -3861,9 +3862,9 @@ msgid "Central columns" msgstr "Colonne centrali" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Database" @@ -3973,7 +3974,7 @@ msgid "Recent" msgstr "Recente" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Tabelle preferite" @@ -4046,7 +4047,7 @@ msgstr "Ordinando" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4418,20 +4419,21 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Un piccolo numero in virgola mobile, i valore accettati vanno da -" -"3.402823466E+38 a -1.175494351E-38, 0, e da 1.175494351E-38 a 3.402823466E+38" +"Un piccolo numero in virgola mobile, i valore accettati vanno da " +"-3.402823466E+38 a -1.175494351E-38, 0, e da 1.175494351E-38 a 3.402823466E" +"+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Un numero in virgola mobile a doppia precisione, sono accettati i valori da -" -"1.7976931348623157E+308 a -2.2250738585072014E-308, 0, e da " +"Un numero in virgola mobile a doppia precisione, sono accettati i valori da " +"-1.7976931348623157E+308 a -2.2250738585072014E-308, 0, e da " "2.2250738585072014E-308 a 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4729,7 +4731,7 @@ msgstr "Dimensione massima: %s%s" msgid "MySQL said: " msgstr "Messaggio di MySQL: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Spiega SQL" @@ -4741,7 +4743,7 @@ msgstr "Non Spiegare SQL" msgid "Without PHP Code" msgstr "Senza codice PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Crea il codice PHP" @@ -4856,13 +4858,13 @@ msgstr "Descrizione" msgid "Use this value" msgstr "Usa questo valore" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5265,7 +5267,7 @@ msgid "Set value: %s" msgstr "Imposta valore: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Ripristinare valori predefiniti" @@ -5397,8 +5399,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se lo ritieni necessario, usa ulteriori impostazioni di protezione - %" -"sautenticazione degli host%s e %slista di proxy fidati%s. Comunque, la " +"Se lo ritieni necessario, usa ulteriori impostazioni di protezione - " +"%sautenticazione degli host%s e %slista di proxy fidati%s. Comunque, la " "protezione a basata su IP potrebbe non essere affidabile se il tuo IP " "appartiene ad un ISP al quale migliaia di utenti, incluso te, sono connessi." @@ -5414,8 +5416,8 @@ msgstr "" "Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il " "nome utente e la parola chiave per l'auto-login, questo non è desiderato per " "gli host in uso live. Chiunque che conosce o indovina il tuo URL di " -"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %" -"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta " +"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: libraries/config/ServerConfigChecks.class.php:440 #, php-format @@ -5703,23 +5705,35 @@ msgstr "Tab da mostrare quando si entra in una tabella." msgid "Default table tab" msgstr "Tabulazione predefinita per le tabelle" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Racchiudi i nomi di tabelle e di campi con virgolette" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Racchiudi i nomi di tabelle e di campi con virgolette" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Nascondi le azioni relative alla struttura della tabella." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Nascondi le azioni relative alla struttura della tabella" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Mostra i server in una lista invece di un menu a tendina." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Visualizza i server in una lista" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5727,11 +5741,11 @@ msgstr "" "Disabilita le operazioni di manutenzione delle tabelle, come " "l'optimizzazione o la riparazione delle tabelle selezione nel database." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Disabilita la manutenzione multipla di tabelle" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5739,39 +5753,39 @@ msgstr "" "Imposta il numero di secondi concessi per l'esecuzione di uno script([kbd]0[/" "kbd] = nessun limite)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Massimo tempo di esecuzione" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Aggiungi l'istruzione %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Salva con nome" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Codifica dei caratteri del file" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compressione" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5781,60 +5795,60 @@ msgstr "Compressione" msgid "Put columns names in the first row" msgstr "Metti i nomi dei campi nel primo rigo" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Campi limitati da" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Campi prefissati con" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Sostituisci NULL con" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Rimuovi i caratteri CRLF dai campi" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Campi terminati da" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Linee terminate con" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Edizione Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Modello per nomi dei database" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Modello per nomi dei server" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Modello per nomi delle tabelle" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5843,139 +5857,139 @@ msgstr "Modello per nomi delle tabelle" msgid "Dump table" msgstr "Dump delle tabelle" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Includi sottotitolo della tabella" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Sottotitolo della tabella" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Sottotitolo della tabella, continuato" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Chiave etichetta" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Tipo MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relazioni" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Metodo di esportazione" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Salva sul server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Sovrascrivi file(s) esistente/i" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Ricorda il modello per i nomi dei file" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Racchiudi i nomi di tabelle e di campi con virgolette" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Modalità di compatibilità SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "opzioni di CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Creazione/Aggiornamento/Controllo dati" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Usa inserimenti ritardati" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Disabilita i controlli sulle chiavi straniere" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Esporta le viste come tabelle" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Aggiungi %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Utilizza esadecimale per i BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Usa ignore inserts" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Sintassi da utilizzare nell'inserimento dei dati" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Lunghezza massima di una query creata" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Tipo di esportazione" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Includi esportazione in una transazione" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Esporta l'orario in UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Forza una connessione sicura durante l'utilizzo di phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Forza una connession SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5984,144 +5998,144 @@ msgstr "" "content[/kbd] sono i dati di rifereimento, [kbd]id[/kbd] é il valore della " "chiave." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Ordinamento delle chiavi esterne nel menu a tendina" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Un menu a tendina verrá utilizzato in caso ci siano meno elementi." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Limite di chiavi esterne" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Modalitá di navigazione" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Personalizza modalità di navigazione." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Personalizza le opzioni predefinite." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Sviluppatore" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Impostazioni per gli sviluppatori di phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Modalitá di modifica" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Personalizza la modalitá di modifica." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Esporta i predefiniti" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Personalizza le opzioni di esportazione predefinite." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Caratteristiche" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Generale" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Imposta delle opzioni utilizzate abitualmente." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importa i predefiniti" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Personalizza le opzioni di importazione predefinite." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importa / esporta" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" "Imposta le opzioni di compressione e le cartelle per l'esportazione e " "l'importazione." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Opzioni di visualizzazione dei database." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Pannello di navigazione" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Personalizza l'aspetto del pannello di navigazione." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Opzioni di visualizzazione dei server." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Opzioni di visualizzazione delle tabelle." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Pannello principale" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Altre opzioni principali" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Altre impostazioni." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Titoli delle pagine" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6130,19 +6144,19 @@ msgstr "" "[doc@cfg_TitleTable]documentazione[/doc] per vedere delle stringhe che " "possono essere utilizzate per ottenere dei valori speciali." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Finestra di query" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Personalizza le opzioni della finestra di query" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Sicurezza" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6150,23 +6164,23 @@ msgstr "" "Si prega di notare che phpMyAdmin é solo un'interfaccia e le sue " "funzionalità non limitano MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Impostazioni di base" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autenticazione" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Impostazioni di autenticazione." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Configurazione del server" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6174,15 +6188,15 @@ msgstr "" "Configurazione avanzata del server, non cambiare queste opzioni se non sai a " "cosa servono." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Inserisci i parametri di connessione al server." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Configurazione di memorizzazione" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6192,11 +6206,11 @@ msgstr "" "alle funzionalitá supplementari, vedi [doc@linked-tables]memorizzazione " "della configurazione di phpMyAdmin[/doc] nella documentazione." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Monitoriaggio dei cambiamenti" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6204,112 +6218,112 @@ msgstr "" "Monitoraggio dei cambiamenti effettuati al database. Richiede la " "memorizzazione della configurazione di phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Personalizza le opzioni di esportazione" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Personalizza le opzioni predefinite di importazione" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Personalizza pannello di navigazione" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Personalizza pannello principale" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Query SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Riquadro per query SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Personalizza i collegamenti mostrati nei riquadri per query SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Impostazioni query SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Avvio" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Personalizza la pagina benvenuto." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Struttura del database" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Seleziona quali dettagli mostrare nella struttura del database (lista delle " "tabelle)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Struttura della tabella" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Impostazioni per la struttura delle tabelle (lista delle colonne)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Schede" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Seleziona il funzionamento delle tabulazioni." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Visualizza lo schema relazionale" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Dimensioni carta" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Campi di testo" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Personalizza le opzioni dei campi di input." # I think "Texy" is a mistake because on KB "y" is close to "t" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Testo! testo" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Personalizza le opzioni predefinite" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Avviso" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Disabilita alcuni degli avvisi mostrati da phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6317,15 +6331,15 @@ msgstr "" "Abilita compressione [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] per le " "operazioni di importazione ed esportazione." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Parametri aggiuntivi per iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6333,11 +6347,11 @@ msgstr "" "Se impostato, phpMyAdmin continuerá a processare le query con istruzioni " "multiple anche se una di queste fallisce." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignore errori delle istruzioni multiple" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6348,28 +6362,28 @@ msgstr "" "buon modo di importare grandi file, tuttavia potrebbe interrompere le " "transazioni." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Importazione parziale: consenti interruzione" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Disabilita i controlli sulle chiavi straniere" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Non interrompere su errore durante un operazione di INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Sostituisci i dati della tabella col file" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6377,69 +6391,69 @@ msgstr "" "Formato predefinito; notare che questa lista dipende dalla posizione " "(database, tabella) e solo SQL é sempre disponibile." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formato del file importato" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Usa parola chiave LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "I nomi dei campi sulla prima riga" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Non importare righe vuote" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importa valute ($5.00 a 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importa percentuali come valori decimali (12.00% a .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Numero di query da saltare dall'inizio." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Importazione parziale: ignora query" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non usare AUTO_INCREMENT per il valore zero" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Stato iniziale per i dispositivi di scorrimento" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Il numero massimo di righe che è possibile inserire in una volta." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Il numero di righe inserite" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Il numero massimo di caratteri mostrati in qualsiasi campo non-numerico " "nella vista di navigazione." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Limita i caratteri dei campi" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6450,11 +6464,11 @@ msgstr "" "opzione é impostata a FALSE è facile dimenticare di uscire anche dagli altri " "server, quando si é connessi a multipli server." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Elimina tutti i cookie al logout" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6462,11 +6476,11 @@ msgstr "" "Stabilisci se il login precedente deve essere ricordato o meno, nel modo di " "autenticazione [kbd]cookie[/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Ricorda nome utente" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6478,50 +6492,50 @@ msgstr "" "solo per la sessione esistente, e verrá rimorro al momento della chiusura " "della finestra del browser. Questo é consigliato per ambienti di sfiducia." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Store del cookie di login" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Stabilisce per quanto tempo (in secondi) un cookie di login è valido." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Validitá per il cookie di login" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Raddoppia la dimensione dell'area di testo per campi LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Un area di testo piú grande per LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" "Il numero massimo di caratteri utilizzati per visalizzare una query SQL." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Lunghezza massima per visualizzazione SQL" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Gli utenti non possono impostare un valore maggiore" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" "Il numero massimo di database da visualizzare nella lista dei database." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Massimi numero dei database" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6529,13 +6543,13 @@ msgstr "" "Il numero di elementi che possono essere visualizzati in ogni pagina al " "primo livello dell'albero di navigazione." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for input field" msgid "Maximum items on first level" msgstr "Numero massimo di elementi al primo livello" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6543,12 +6557,12 @@ msgstr "" "Il numero di elementi che possono essere visualizzati in ogni pagina " "dell'albero di navigazione." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 #, fuzzy msgid "Maximum items in branch" msgstr "Numero massimo di elementi nel ramo" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6557,19 +6571,19 @@ msgstr "" "risultati contengono ulteriori righe i collegamenti \"Precedente\" e " "\"Seguente\" saranno mostrati." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Il massimo numero di righe da visualizzare" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Il numero massimo di tabelle da visualizzare nella lista di tabelle." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Il massimo numero di tabelle" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6577,41 +6591,41 @@ msgstr "" "Il numero massimo di byte che uno script può allocare, ad esempio [kbd]32M[/" "kbd] ([kbd]0[/kbd] per nessun limite)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Limite memoria" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Mostra elementi nascosti dell'albero di navigazione." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Mostra logo nel pannello di navigazione." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Visualizza logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL a cui punta il logo del logo nel pannello di navigazione." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL del collegamento per il logo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6619,31 +6633,31 @@ msgstr "" "Apri i link nella finestra principale ([kbd]main[/kbd]) o in una finestra " "nuova ([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Destinazione del collegamento per il logo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" "Visualizza la scelta del server nella parte superiore del pannello di " "navigazione." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Visalizza la selezione dei server" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Destinazione per l'icona di accesso veloce" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Destinazione per l'icona di accesso veloce" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6651,17 +6665,17 @@ msgstr "" "Numero minimo di elementi (tabelle, viste, procedure ed eventi) per " "visualizzare il riquadro di filtraggio." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Numero minimo di elementi per visualizzare il riquadro di filtraggio" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" "Numero minimo di database per visualizzare il riquadro di filtraggio dei " "database" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6669,56 +6683,56 @@ msgstr "" "Raggruppa gli elementi nell'albero della navigazione (determinato dal " "separatore definito più sotto)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Raggruppa elementi nell'albero" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "Stringa che separa i database in livelli dell'albero differenti." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Separatore dell'albero database" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "La stringa che separa le tabelle in diversi livelli dell'albero." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Separatore dell'albero di tabelle" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Massima profonditá per l'albero delle tabelle" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Evidenzia il server sotto il cursore del mouse." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Abilita evidenziamento" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Se disabilitare la possibilità di espandere il database o no." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Barra di navigazione delle tabelle" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." @@ -6726,7 +6740,7 @@ msgstr "" "Il massimo numero di tabelle recenti da visualizzare; imposta 0 per " "disabilitare" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." @@ -6734,43 +6748,43 @@ msgstr "" "Il massimo numero di tabelle recenti da visualizzare; imposta 0 per " "disabilitare" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Tabelle utilizzate recentemente" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "Questi sono i collegamenti per Modifica, Copia ed Eliminazione" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Dove mostrare i collegamenti per le righe delle tabelle" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Use natural order for sorting table and database names" msgid "Use natural order for sorting table and database names." msgstr "" "Utilizza un ordine naturale per ordinare i nomi delle tabelle e dei database" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Ordine naturale" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, fuzzy #| msgid "Use only icons, only text or both" msgid "Use only icons, only text or both." msgstr "Utilizza solo icone, solo testo o entrambi" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Barra di navigazione delle tabelle" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, fuzzy #| msgid "use GZip output buffering for increased speed in HTTP transfers" msgid "Use GZip output buffering for increased speed in HTTP transfers." @@ -6778,11 +6792,11 @@ msgstr "" "utilizza il buffer di uscita GZip per una maggiore velocità nei " "trasferimenti via HTTP" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "utilizza il buffer di uscita GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -6794,21 +6808,21 @@ msgstr "" "[kbd]SMART[/kbd] - ad esempio ordine decrescente per i campi dei tipi TIME, " "DATE, DATETIME e TIMESTAMP, ordine crescente altrimenti" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Ordinamento predefinito" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Use persistent connections to MySQL databases" msgid "Use persistent connections to MySQL databases." msgstr "Usa connessioni persistenti per i server MySQL" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Connessione persistente" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -6823,11 +6837,11 @@ msgstr "" "dettagli della Struttura dei database, se qualche tabella necessaria per la " "memorizzazzione della configurazione di phpMyAdmin non viene trovata" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Mancano le tabelle di configurazione di phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if a difference between the " @@ -6839,11 +6853,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -6856,29 +6870,29 @@ msgstr "" "dettagli della Struttura dei database se una tabella contiene colonne i cui " "nomi sono parole chiave MySQL" -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Come visualizzare le linguette dei menu" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, fuzzy #| msgid "Disallow BLOB and BINARY columns from editing" msgid "Disallow BLOB and BINARY columns from editing." msgstr "Disabilita l'opzione di modifica dei campi BLOB e BINARY" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Proteggi campi binari" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6889,21 +6903,21 @@ msgstr "" "disabilitata, questa utilizzera funzioni JS per visualizzare la cronologia " "delle query (persa alla chiusura della finstra)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Cronologia delle query permanente" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, fuzzy #| msgid "How many queries are kept in history" msgid "How many queries are kept in history." msgstr "Il numero di query da mantenere nella cronologia" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Lunghezza per la cronologia delle query" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, fuzzy #| msgid "Select which functions will be used for character set conversion" msgid "Select which functions will be used for character set conversion." @@ -6911,32 +6925,32 @@ msgstr "" "Seleziona le funzioni che saranno usate per la conversione dell'insieme di " "caratteri" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Motore di registrazione" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, fuzzy #| msgid "When browsing tables, the sorting of each table is remembered" 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Ricorda l'ordine delle tabelle" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Ordinamento predefinito" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -6946,93 +6960,93 @@ msgstr "" "Repeti le instestazioni ogni X celle, [kbd]0[/kbd] disattiva questa " "funzionalitá" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Ripeti intestazioni" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Campo di visualizzazione relazionale" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Opzioni di visualizzazione dei server." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 #, fuzzy #| msgid "Save all edited cells at once" msgid "Grid editing: save all edited cells at once" msgstr "Salva tutte le celle modificate" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, fuzzy #| msgid "Directory where exports can be saved on server" msgid "Directory where exports can be saved on server." msgstr "La cartella sul server dove è possibile salvare le esportazioni" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Salva cartella" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "Lascia vuoto se non usato" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Ordine dei permessi del host" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "Lascia vuoto per i valori predefiniti" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Regole dei permessi del host" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Consenti login senza la parola chiave" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Consenti login per utenti root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Valore sessione" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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 "Il nome del Basic Auth Realm da visualizzare durante HTTP Auth" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Realm HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -7047,21 +7061,21 @@ msgstr "" "autenticazione hardware SweKey[/a] (not salvata nella cartella document " "root; percorso consigliato: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "File di configurazione SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "Metodo di autenticazione da usare" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Tipo di autenticazione" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" @@ -7073,11 +7087,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabella dei segnalibri" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -7089,35 +7103,35 @@ msgstr "" "Lascia vuoto per diattivare i commenti/tipi mime per i campi, consigliato: " "[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabella delle informazioni sui campi" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "Comprimi la connessione al server MySQL" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Comprimi la connessione" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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 "Come connettersi al server, lascia [kbd]tcp[/kbd] se non sei sicuro" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Tipo di connessione" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Parola chiave per l'utente di controllo" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7131,11 +7145,11 @@ msgstr "" "ulteriori informazioni disponibili nella [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki[/a]" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Utente di controllo" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 #, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " @@ -7147,11 +7161,11 @@ msgstr "" "Un host alternativo per memorizzare la configurazione; lasciate in bianco " "per utilizzare l'host già definito" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Host di controllo" -#: 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 " @@ -7164,19 +7178,19 @@ msgstr "" "Un host alternativo per memorizzare la configurazione; lasciate in bianco " "per utilizzare l'host già definito" -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control host" msgid "Control port" msgstr "Host di controllo" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, fuzzy #| msgid "Hide databases matching regular expression (PCRE)" msgid "Hide databases matching regular expression (PCRE)." msgstr "Nascondi i database corrispondenti all'espressione regolare (PCRE)" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7184,15 +7198,15 @@ msgstr "" "Maggiori informazioni su [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" "PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Disabilita l'utilizzo di INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Nascondi i database" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7204,25 +7218,25 @@ msgstr "" "Lascia vuoto per disabilitare il supporto per la cronologia delle query SQL, " "consigliato: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabella di cronologia delle query SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, fuzzy #| msgid "Hostname where MySQL server is running" msgid "Hostname where MySQL server is running." msgstr "Il nome host dove is server MySQL é in esecuzione" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Nome host del server" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Url di logout" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 #, fuzzy #| msgid "" #| "Limits number of table preferences which are stored in database, the " @@ -7234,17 +7248,17 @@ 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:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Numero massimo di preferenze di tabella da memorizzare" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "Vedi la tabella di stato dello slave" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7255,13 +7269,13 @@ msgstr "" "Lascia vuoto disabilitare il supporto per i schemi PDF, consigliato: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns table" msgstr "Colonne centrali" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7273,17 +7287,17 @@ msgstr "" "Lascia vuoto per disabilita il supporto dello schema PDF, consigliato: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "Prova ad effettuare la connessione senza una parola chiave" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Effettua connessione senza la parola chiave" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -7302,21 +7316,21 @@ msgstr "" "puoi ordinare la lista dei database, basta inserire i loro nomi in ordine e " "utilizzare [kbd]*[/kbd] alla fine per mostrare il resto in ordine alfabetico." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Mostra solo i database dalla lista" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, fuzzy #| msgid "Leave empty if not using config auth" msgid "Leave empty if not using config auth." msgstr "Lascia vuoto su il config auth non é utilizzato" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Parola chiave per config auth" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7326,11 +7340,11 @@ msgstr "" "Lascia vuoto disabilitare il supporto per i schemi PDF, consigliato: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "Schema PDF: tabella delle pagine" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7345,23 +7359,23 @@ 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Nome del database" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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 "" "La dove il server MySQL ascolta, lascia vuoto per il valore predefinito" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Porta del server" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7373,11 +7387,11 @@ msgstr "" "Lascia vuoto per disabilitare la memorizzazione delle tabelle recenti nel " "database, consigliato: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Tabella utilizzata recentemente" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7389,13 +7403,13 @@ msgstr "" "Lascia vuoto per disabilitare la memorizzazione delle tabelle recenti nel " "database, consigliato: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Tabelle preferite" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7407,11 +7421,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Tabella relazionale" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7423,15 +7437,15 @@ msgstr "" "Vedi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipi di " "autenticazione[/a] per un esempio" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Nome della sessione di signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "L'URL di signon" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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." @@ -7439,21 +7453,21 @@ msgstr "" "Il socket sul quale il server MySQL ascolta, lascia vuoto per il valore " "predefinito" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Socket del server" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, fuzzy #| msgid "Enable SSL for connection to MySQL server" msgid "Enable SSL for connection to MySQL server." msgstr "Abilita SSL per la connessione al server MySQL" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Utilizza SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7465,13 +7479,13 @@ msgstr "" "Lascia vuoto per disabilita il supporto dello schema PDF, consigliato: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "Schema PDF: coordinate delle tabelle" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " @@ -7483,11 +7497,11 @@ msgstr "" "La tabella che descrive i campi di visualizzazione, lascia vuoto per " "disabilitarne il supporto; consigliato: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Visualizza i campi della tabella" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables'UI preferences across sessions, " @@ -7500,11 +7514,11 @@ msgstr "" "dell'interfaccia utenti nel database, consigliato: [kbd]pma_table_uiprefs[/" "kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabella di memorizzazione delle preferenze dell'interfaccia utente" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7512,11 +7526,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Aggiungi DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7524,11 +7538,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Aggiungi DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7536,21 +7550,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Aggiungi DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Istruzioni da monitorare" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -7562,11 +7576,11 @@ msgstr "" "Lascia vuoto per disabilitare il supporto per il monitoriaggio delle query " "SQL, consigliato: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabella de monitoraggio delle query SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7574,11 +7588,11 @@ msgstr "" "Se il meccanismo di monitoraggio crea versioni per tabelle e viste " "automaticamente." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Crea versioni automaticamente" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7590,37 +7604,37 @@ msgstr "" "Lascia vuoto per disabilitare la memorizzazione delle preferenze degli " "utenti nel database, consigliato: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabella di memorizzazione delle preferenze degli utenti" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Utilizza tabelle" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Utilizza la Tabella dell'Host" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7632,15 +7646,15 @@ msgstr "" "Lascia vuoto per disabilitare la memorizzazione delle preferenze degli " "utenti nel database, consigliato: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Utente per il config auth" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7648,21 +7662,21 @@ msgstr "" "Una descrizione di facile utilizzo di questo server. Lascia vuoto per " "visualizzare il nome host, invece." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Nome completo di questo server" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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 "Se visualizzare all'utente un pulsante \"mostra tutte le (righe)\"" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Consenti la visualizzazione di tutte le righe" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy #| msgid "" #| "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -7679,45 +7693,45 @@ msgstr "" "di configurazione; questo non limita la capacità di eseguire lo stesso " "comando direttamente" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Mostra il modulo di modifica della parola chiave" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Mostra il modulo di creazione dei database" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show more actions" msgid "Show Creation timestamp" msgstr "Mostra piú azioni" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy #| msgid "Show master status" msgid "Show Last check timestamp" msgstr "Mostra lo stato del master" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 #, fuzzy #| msgid "" #| "Defines whether or not type fields should be initially displayed in edit/" @@ -7729,32 +7743,32 @@ msgstr "" "Stabilisce se i tipi dei campi dovrebbero essere visualizzati inizialmente " "nella modalitá di inserimento/modifica" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Mostra i tipi di campi" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, fuzzy #| msgid "Display the function fields in edit/insert mode" msgid "Display the function fields in edit/insert mode." msgstr "" "Visualizza i campi delle funzioni nelle modalita di inserimento/modifica" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Mostra i campi delle funzioni" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, fuzzy #| msgid "Whether to show hint or not" msgid "Whether to show hint or not." msgstr "Se mostrare il suggerimento o meno" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Mostra suggerimento" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7766,15 +7780,15 @@ msgstr "" "Mostra un collegamento all'output di [a@http://php.net/manual/function." "phpinfo.php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Mostra un collegamento a phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Mostra informazioni dettagliate del server MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -7784,11 +7798,11 @@ msgstr "" "Definisce se le query SQL generate da phpMyAdmin devrebbero essere " "visualizzate" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Mostra query SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 #, fuzzy #| msgid "" #| "Defines whether the query box should stay on-screen after its submission" @@ -7798,11 +7812,11 @@ msgstr "" "Definisce se la finestra della query deve stare sullo schermo dopo la " "conferma" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Nascondi riquadro query SQL" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, fuzzy #| msgid "Allow to display database and table statistics (eg. space usage)" msgid "Allow to display database and table statistics (eg. space usage)." @@ -7810,11 +7824,11 @@ msgstr "" "Consenti la visualizzazione delle statistiche dei database e tabelle (ad " "esempio spazio utilizzato)" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Mostra statistiche" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy #| msgid "" #| "Mark used tables and make it possible to show databases with locked tables" @@ -7824,21 +7838,21 @@ msgstr "" "Segna le tabelle come utilizzate e quindi consenti la visualizzazione dei " "database con delle tabelle bloccate" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Ignora le tabelle bloccate" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 #, fuzzy #| msgid "A warning is displayed on the main page if Suhosin is detected" msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Mostra un avviso sulla pagina principale se Suhosin é stato trovato" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Avviso Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7852,13 +7866,13 @@ msgstr "" "dettagli della Struttura dei database se una tabella contiene colonne i cui " "nomi sono parole chiave MySQL" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Validitá per il cookie di login" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 #, fuzzy #| msgid "" #| "Textarea size (columns) in edit mode, this value will be emphasized for " @@ -7871,11 +7885,11 @@ msgstr "" "valore incrementato per le aree di testo delle query SQL (x2) e per la " "finestra di query (x1.25)" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Campi di aree di testo" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7884,31 +7898,31 @@ msgstr "" "viene incrementato per le aree di testo delle query SQL (×2) e per la " "finestra di query (×1.25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Righe nelle aree di testo" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Titolo della finestra del browser quando niente è selezionato." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Titolo Predefinito" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -7920,28 +7934,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Cartella di upload" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Consenti la ricerca all'interno di un intero database." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Utilizza la ricerca dei database" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 #, fuzzy #| msgid "" #| "When disabled, users cannot set any of the options below, regardless of " @@ -7953,15 +7967,15 @@ msgstr "" "Quando disabilitato, gli utenti non possono impostare alcune opzioni " "sottostanti, indipendentemente dalla casella di controllo sulla destra" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Abilita la tabulazione per Sviluppatori nelle impostazioni" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Controlla l'ultima versione" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 #, fuzzy #| msgid "Enables check for latest version on main phpMyAdmin page" msgid "Enables check for latest version on main phpMyAdmin page." @@ -7969,14 +7983,14 @@ msgstr "" "Abilita la prova per la versione più recente sulla pagina principale di " "phpMyAdmin" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 msgid "" "The url of the proxy to be used when retrieving the information about the " "latest version of phpMyAdmin or when submitting error reports. You need this " @@ -7984,34 +7998,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "Nome utente" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Password" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -8023,55 +8037,55 @@ 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "Porta del server" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Query eseguite" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8093,46 +8107,46 @@ msgstr "Autenticazione HTTP" msgid "Signon authentication" msgstr "Autenticazione via signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Foglio di calcolo nel formato Open Document" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Veloce" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Personalizzazato" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opzioni di esportazione per database" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV per dati MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8366,20 +8380,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Nessuna Password" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Password:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8523,8 +8537,8 @@ msgstr ", @TABLE@ diventerá il nome della tabella" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -9106,8 +9120,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." @@ -9599,7 +9613,7 @@ msgstr "Disconnetti" msgid "phpMyAdmin documentation" msgstr "Documentazione di phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -10288,8 +10302,8 @@ msgstr "Benvenuto in %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La ragione di questo è che probabilmente non hai creato alcun file di " "configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno." @@ -10533,7 +10547,7 @@ msgstr "Metti i nomi dei campi nel primo rigo" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11634,7 +11648,7 @@ msgstr "" "cnf). Altrimenti, aggiungi la linea seguente nella sezione [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11642,16 +11656,16 @@ msgstr "Nome utente" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nome utente" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Password" @@ -11681,10 +11695,10 @@ msgstr "ID del server" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -11698,40 +11712,40 @@ msgstr "" "questa lista." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Qualsiasi host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Locale" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Questo Host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Qualsiasi utente" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Utilizza campo text" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Utilizza la Tabella dell'Host" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11740,7 +11754,7 @@ msgstr "" "memorizzati nella tabella Host invece utilizzati." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Reinserisci" @@ -12534,7 +12548,7 @@ msgstr "Nessun" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12605,14 +12619,14 @@ msgstr "Limite di connessioni simultanee che un utente può fare." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12623,7 +12637,7 @@ msgid "Administration" msgstr "Amministrazione" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Privilegi globali" @@ -12634,7 +12648,7 @@ msgid "Global" msgstr "globale" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" @@ -12653,146 +12667,146 @@ msgstr "" "Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei " "privilegi." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Informazioni di Login" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Utilizza campo text" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Non cambiare la password" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "La password per l'utente %s è cambiata con successo." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Hai revocato i privilegi per %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Aggiungi utente" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Database per l'utente" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Garantisci tutti i privilegi per il database \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Utenti che hanno accesso a \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "L'utente é stato aggiunto." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Utente" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Nessun utente trovato." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Qualsiasi" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globale" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "specifico del database" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "carattere jolly" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specifico del database" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Modifica Privilegi" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Revoca" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Modifica server" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… mantieni quello vecchio." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… cancella quello vecchio dalla tabella degli utenti." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revoca tutti i privilegi attivi da quello vecchio e in seguito cancellalo." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12800,125 +12814,125 @@ msgstr "" "… cancella quello vecchio dalla tabella degli utenti e in seguito ricarica i " "privilegi." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Cambia le Informazioni di Login / Copia Utente" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Crea un nuovo utente con gli stessi privilegi e …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilegi relativi ai campi" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Aggiungi privilegi sul seguente database" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "I caratteri jolly _ e % dovrebbero essere preceduti da un \\ per l'utilizzo " "letterale." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Aggiungi privilegi sulla seguente tabella" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Rimuove gli utenti selezionati" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Elimina i databases gli stessi nomi degli utenti." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Nessun utente selezionato per la cancellazione!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Caricamento dei privilegi in corso" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Gli utenti selezionati sono stati cancellati con successo." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Hai aggiornato i permessi per %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Cancellazione in corso di %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "L'utente %s esiste già!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Privilegi per %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nuovo" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Modifica Privilegi" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Vista d'insieme degli utenti" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella " "dei privilegi di MySQL. Il contenuto di questa tabella può differire dai " "privilegi usati dal server se sono stati fatti cambiamenti manuali. In " "questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." @@ -14857,23 +14871,23 @@ msgstr "Dimensione cache degli indici" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tipo di indice:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Utente:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Commenti" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15972,12 +15986,12 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Il rapporto corrente tra la memoria libera nella cache delle query e la " -"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra l'80%" -"%" +"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra " +"l'80%%" #: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" @@ -16135,8 +16149,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% di tutti gli ordinamenti causano la creazione di tabelle temporanee, " "questo valore dovrebbe essere inferiore al 10%%." @@ -17378,8 +17392,8 @@ msgstr "concurrent_insert è impostato a 0" #~ "%s." #~ msgstr "" #~ "Il validatore SQL non può essere inizializzato. Prego controllare di " -#~ "avere installato le estensioni php necessarie come descritto nella %" -#~ "sdocumentazione%s." +#~ "avere installato le estensioni php necessarie come descritto nella " +#~ "%sdocumentazione%s." #, fuzzy #~| msgid "Error: Relation not added." @@ -18042,8 +18056,8 @@ msgstr "concurrent_insert è impostato a 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database %" -#~ "s?" +#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database " +#~ "%s?" #~ msgid "Unknown error while uploading." #~ msgstr "Errore sconosciuto durante il caricamento del file." diff --git a/po/ja.po b/po/ja.po index 228e01f116..fe173480d1 100644 --- a/po/ja.po +++ b/po/ja.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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-19 08:13+0200\n" "Last-Translator: worldwideskier \n" -"Language-Team: Japanese " -"\n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,7 +67,7 @@ msgstr "テーブルのコメント:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "カラム" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "リンク先" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "主" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "いいえ" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "ださい。" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "テーブル" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "行" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "サイズ" @@ -335,7 +335,6 @@ msgstr "追跡データは正常に削除されました。" #: db_tracking.php:48 #, php-format -#| msgid "Version %1$s was created, tracking for %2$s is active." msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "世代 %1$s を作成しました。SQL コマンド追跡機能はアクティブです。" @@ -371,9 +370,9 @@ msgstr "状態" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -568,15 +567,15 @@ msgstr "幾何データを追加する" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -609,8 +608,8 @@ msgstr "不完全なパラメータ" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "アップロードしようとしたファイルが大きすぎるようです。この制限に関する対策に" "ついては %sドキュメント%s をご覧ください。" @@ -699,7 +698,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "戻る" @@ -723,7 +722,7 @@ msgid "General Settings" msgstr "一般設定" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "パスワードを変更する" @@ -798,7 +797,7 @@ msgstr "バージョン情報:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "ドキュメント" @@ -1087,7 +1086,7 @@ msgstr "インデックスを追加する" msgid "Edit Index" msgstr "インデックスを編集する" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" @@ -1123,7 +1122,7 @@ msgstr "最低ひとつはカラムを追加してください。" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1158,12 +1157,12 @@ msgstr "ホスト名が空です!" msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" @@ -1367,7 +1366,7 @@ msgstr "少なくとも1つの系列を追加してください" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1659,7 +1658,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1876,7 +1875,7 @@ msgstr "クエリボックスを表示" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2148,7 +2147,7 @@ msgstr "プロット点におけるデータ内容" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "無視" @@ -2346,7 +2345,7 @@ msgstr "クリックでカラムの表示/非表示
ができるドロッ #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "すべて表示" @@ -2449,7 +2448,7 @@ msgstr "パネルを隠す" msgid "Show hidden navigation tree items." msgstr "左のフレーム内にロゴを表示します。" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main frame" @@ -2957,16 +2956,16 @@ msgid "Delete" msgstr "削除" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3102,7 +3101,7 @@ msgid "During current session" msgstr "現在のエラーをスキップする" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3524,8 +3523,8 @@ msgstr "SQL は正常に実行されました" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" #: libraries/DisplayResults.class.php:4560 @@ -3563,6 +3562,7 @@ msgstr "チェックしたものを:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3578,12 +3578,12 @@ msgstr "変更" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3790,7 +3790,7 @@ msgstr "" "れません。" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "サーバ" @@ -3805,11 +3805,11 @@ msgstr "ビュー" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3825,7 +3825,7 @@ msgstr "構造" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3851,9 +3851,9 @@ msgstr "挿入" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "特権" @@ -3915,9 +3915,9 @@ msgid "Central columns" msgstr "textarea の 1 行の文字数" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "データベース" @@ -4034,7 +4034,7 @@ msgid "Recent" msgstr "リセット" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4115,7 +4115,7 @@ msgstr "ソート" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4495,20 +4495,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "単精度浮動小数、有効範囲は -3.402823466E+38 から -1.175494351E-38、0、" "1.175494351E-38 から 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から -" -"2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E" +"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から " +"-2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E" "+308" #: libraries/Types.class.php:336 @@ -4793,7 +4793,7 @@ msgstr "最長: %s%s" msgid "MySQL said: " msgstr "MySQL のメッセージ: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "EXPLAIN で確認" @@ -4805,7 +4805,7 @@ msgstr "SQL の EXPLAIN 解析をスキップ" msgid "Without PHP Code" msgstr "PHP コードを省略" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP コードの作成" @@ -4922,13 +4922,13 @@ msgstr "説明" msgid "Use this value" msgstr "この値を利用する" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5351,7 +5351,7 @@ msgid "Set value: %s" msgstr "値「%s」を設定" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "デフォルト値に戻す" @@ -5476,8 +5476,8 @@ msgstr "" #: libraries/config/ServerConfigChecks.class.php:419 #, fuzzy, php-format #| msgid "" -#| "If using cookie authentication and %sLogin cookie store%s is not 0, %" -#| "sLogin cookie validity%s must be set to a value less or equal to it." +#| "If using cookie authentication and %sLogin cookie store%s is not 0, " +#| "%sLogin cookie validity%s must be set to a value less or equal to it." msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." @@ -5489,20 +5489,21 @@ msgstr "" #: libraries/config/ServerConfigChecks.class.php:426 #, fuzzy, php-format #| msgid "" -#| "If you feel this is necessary, use additional protection settings - %" -#| "shost authentication%s settings and %strusted proxies list%s. However, IP-" -#| "based protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#| "If you feel this is necessary, use additional protection settings - " +#| "%shost authentication%s settings and %strusted proxies list%s. However, " +#| "IP-based protection may not be reliable if your IP belongs to an ISP " +#| "where thousands of users, including you, are connected to." msgid "" "If you feel this is necessary, use additional protection settings - %shost " "authentication%s settings and %strusted proxies list%s. However, IP-based " "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%" -"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し" -"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続" -"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。" +"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定" +"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ" +"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい" +"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま" +"せん。" #: libraries/config/ServerConfigChecks.class.php:434 #, php-format @@ -5856,25 +5857,37 @@ msgstr "テーブルが選択されたときに表示されるタブ" msgid "Default table tab" msgstr "デフォルトのテーブルタブ" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "テーブル名やカラム名を逆クォートで囲む" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "テーブル名やカラム名を逆クォートで囲む" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Whether the table structure actions should be hidden" msgid "Whether the table structure actions should be hidden." msgstr "テーブル構造の操作欄の折り畳みをしないかどうか。" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "テーブル構造の操作欄を折り畳む" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "サーバの一覧をドロップダウンの代わりにリストで表示します。" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "サーバをリストで表示する" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5882,11 +5895,11 @@ msgstr "" "データベースで選択したテーブルを最適化や修復するというような、大量操作する" "テーブルメンテナンスを無効にします。" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "複数のテーブルに対してのメンテナンスを無効にする" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5897,39 +5910,39 @@ msgid "" msgstr "" "スクリプトの実行が許されている秒数を設定します。([kbd]0[/kbd] で制限なし)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "最大実行時間" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s コマンドを追加する" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "ファイルに保存する" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "ファイルの文字セット" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "フォーマット" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "圧縮" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5939,66 +5952,66 @@ msgstr "圧縮" msgid "Put columns names in the first row" msgstr "1 行目にカラム名を追加する" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" msgstr "カラム囲み記号:" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" msgstr "カラムのエスケープ記号:" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "NULL の代替文字列:" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "カラムに含まれている CRLF 文字を取り除く" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "カラムの終端記号" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" msgstr "行の終端記号:" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel のエディション" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "データベース名のテンプレート" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "サーバ名のテンプレート" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "テーブル名のテンプレート" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6007,144 +6020,144 @@ msgstr "テーブル名のテンプレート" msgid "Dump table" msgstr "ダンプするテーブル" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "テーブルのキャプションを含める" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "テーブルのキャプション" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "テーブルのキャプション (続き)" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "ラベルキー" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME タイプ" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "リレーション" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "エクスポート方法" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "サーバ上に保存する" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "既存のファイルは上書きする" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "ファイル名のテンプレートを記憶しておく" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "テーブル名やカラム名を逆クォートで囲む" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL 互換モード" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE オプション:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "作成/更新/検査日" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "遅延インサートを使用する" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "外部キーのチェックを無効にする" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export views as tables" msgstr "テーブル \"%s\" から行単位でデータをエクスポート" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s を追加する" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "BLOB に 16 進数表記を利用する" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "INSERT IGNORE を使用する" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "データを挿入するときに使う構文" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "作成するクエリの最大長" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "エクスポート形式" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "エクスポートをトランザクションで囲む" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "エクスポート時間を UTC (協定世界時) にする" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "" "phpMyAdmin を使用している間、強制的にセキュリティで保護された接続をします。" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "SSL 接続の推奨" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -6156,165 +6169,165 @@ msgstr "" "外部キーのドロップダウンボックス内のソート順。[kbd]content[/kbd] は参照してい" "るデータ、[kbd]id[/kbd] はキー値を表しています。" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "外部キーのドロップダウンの順番" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "これより少ない項目数であれば、ドロップダウンが使用されます。" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "外部キー制限" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "表示モード" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "表示モードの詳細設定" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "デフォルトオプションの詳細設定。" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "開発者向け" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "phpMyAdmin 開発者用の設定" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "編集モード" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "編集モードの詳細設定." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "エクスポートのデフォルト" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "デフォルトのエクスポートオプション詳細設定。" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "機能" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "一般" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "共通に使われるオプションの設定" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "インポートのデフォルト" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "デフォルトの共通インポートオプションの詳細設定" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "インポート/エクスポート" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "" "インポートとエクスポートのディレクトリおよび圧縮オプションを設定してください" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "データベースの表示オプション" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "ナビゲーションパネル" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "ナビゲーションフレームの概観の詳細設定" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "サーバ" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "サーバの表示オプション" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "テーブル表示オプション." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "メインフレーム" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "他の中心的な設定" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "どこにも該当しない設定" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "ページタイトル" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6322,19 +6335,19 @@ msgstr "" "ブラウザのタイトルバーのテキストの指定を行います。使用可能な特別な埋め込み変" "数は[doc@cfg_TitleTable]ドキュメント[/doc]を参照してください。" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "クエリウィンドウ" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "クエリウィンドウオプションの詳細設定" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "セキュリティ" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6346,25 +6359,25 @@ msgstr "" "phpMyAdmin は、ユーザインタフェースだけであり、その機能は MySQL を制限するも" "のではないことをご了承ください。" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "基本設定" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "認証" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "認証設定" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "サーバ設定" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6376,17 +6389,17 @@ msgstr "" "高度なサーバ設定。これらのオプションは、よく知らないのであれば変更しないでく" "ださい。" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "サーバの接続パラメータを入力してください" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "環境保管領域" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -6400,11 +6413,11 @@ msgstr "" "追加された機能にアクセスするには phpMyAdmin 環境保管領域を設定してください。" "ドキュメントの [doc@linked-tables]phpMyAdmin 環境保管領域[/doc]参照。" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "変更追跡機能" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6412,60 +6425,60 @@ msgstr "" "データベースで行われた変更の追跡機能です。これには、phpMyAdmin 環境保管領域が" "必要です。" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "エクスポートオプションの詳細設定" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "インポートデフォルトの詳細設定" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "ナビゲーションフレームの詳細設定" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "メインフレームの詳細設定" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL クエリ" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL クエリボックス" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "SQL クエリボックスに表示されるリンクの詳細設定" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "SQL クエリの設定" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "スタートアップ" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "スタートアップページの詳細設定。" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "データベースの構造" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 #, fuzzy #| msgid "" #| "Choose which details to show in the database structure (list of tables)" @@ -6473,65 +6486,65 @@ msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "データベースの構造 (テーブルの一覧) で詳細に表示させるかの選択" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "テーブルの構造" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 #, fuzzy #| msgid "Settings for the table structure (list of columns)" msgid "Settings for the table structure (list of columns)." msgstr "テーブルの構造 (カラムの一覧) における設定" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "タブ" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "タブの動作を選択してください" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "リレーショナルスキーマを表示する" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "用紙サイズ" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "テキスト入力項目" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "テキスト入力項目の詳細設定" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! テキスト" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "デフォルトオプションの詳細設定" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "警告" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "phpMyAdmin で表示される警告の抑制" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6543,15 +6556,15 @@ msgstr "" "インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/" "Gzip]gzip[/a] 圧縮を有効にします。" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv のための追加パラメータ" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6563,11 +6576,11 @@ msgstr "" "有効にした場合、クエリの 1 つが失敗しても phpMyAdmin はマルチクエリの実行を続" "けます。" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "マルチクエリのエラーを無視する" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6577,28 +6590,28 @@ msgstr "" "大きなファイルをインポートする場合には便利ですが、トランザクションが壊れるこ" "ともあります。" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "部分インポート(割り込みの許可)" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "外部キーのチェックを無効にする" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "INSERT エラーで中断しない" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "テーブルデータを差し替えるファイル" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6610,62 +6623,62 @@ msgstr "" "デフォルトの形式。このリストは対象(データベース、テーブル)に依存しているの" "で注意してください。SQL は常に利用可能です。" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "インポートするファイルの形式" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "LOCAL キーワードを使用する" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "1 行目にカラム名を追加する" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "空の行はインポートしない" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "金額は単位を取り除く (例:$5.00 を 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "パーセントは適切な小数に変換する (例:12.00% を .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "先頭から数えたスキップするクエリの数" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "部分インポート(クエリのスキップ)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "折り畳みに対しての初期値" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "1 回で何行まとめて挿入できるか。" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "挿入する行数" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "" #| "Maximum number of characters shown in any non-numeric column on browse " @@ -6674,11 +6687,11 @@ msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "表示ページにおいて数値でないカラムの表示文字の最大数" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "カラムの文字制限" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6689,11 +6702,11 @@ msgstr "" "を外すと、複数のサーバに接続している時、他のサーバからのログアウト作業を忘れ" "やすくなります。" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "ログアウト時にすべてのクッキーを削除する" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6705,11 +6718,11 @@ msgstr "" "クッキー認証モードの場合に、前回ログインしたときの状態に戻すかどうかを定義し" "ます。" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "ログインしたときの状態に戻す" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6721,56 +6734,56 @@ msgstr "" "のウィンドウが閉じられるとすぐに削除されます。これは、信頼されていない環境で" "使う場合に推奨します。" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "ログインクッキーの保存期間" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "ログインクッキーの有効期間 (秒数) を定義します。" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "ログインクッキーの有効期間" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "LONGTEXT カラムに対して textarea を 2 倍にします。" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEXT に対しては大きな textarea を使う" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "SQL クエリが表示されているときに使用される文字の最大数" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "表示できる SQL 文の最大の長さ" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "ユーザはこれより高い値を設定することはできません" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." msgstr "テーブルのリストに表示されるテーブルの最大数" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "データベースの最大数" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6778,13 +6791,13 @@ msgid "" "the navigation tree." msgstr "最初のテーブルを全スキャンした結合の数。" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for input field" msgid "Maximum items on first level" msgstr "入力項目の最大サイズ" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6792,11 +6805,11 @@ msgid "" "tree." msgstr "最初のテーブルを全スキャンした結合の数。" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6804,21 +6817,21 @@ msgstr "" "結果セットの表示行数。結果セットの行数の方が多い場合は「前へ/次へ」のリンク" "が表示されます。" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "行の最大表示数" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "テーブルのリストに表示されるテーブルの最大数" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "テーブルの最大数" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6830,43 +6843,43 @@ msgstr "" "割り当てが許可されているスクリプトのバイト数。例:[kbd]32M[/kbd] ([kbd]0[/" "kbd] で制限無し)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "メモリ制限" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "左のフレーム内にロゴを表示します。" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "ナビゲーションパネル内にロゴを表示します。" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "ロゴを表示する" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to." msgstr "ナビゲーションフレームのロゴが指す URL" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "ロゴのリンク URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6874,31 +6887,31 @@ msgstr "" "リンク先のページをメインウィンドウ ([kbd]main[/kbd]) または新しいウィンドウ " "([kbd]new[/kbd]) で開く。" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "ロゴリンクのターゲット" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "左フレームの上部にサーバ選択を表示します。" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "サーバ選択を表示する" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "クイックアクセスアイコンのリンク先" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "クイックアクセスアイコンのリンク先" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "" @@ -6906,17 +6919,17 @@ msgid "" "display a filter box." msgstr "テーブル表示数を絞るための入力欄が現れる最小のテーブル数" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of items to display the filter box" msgstr "テーブル表示数を絞るための入力欄が現れる最小のテーブル数" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "データベース表示数を絞るための入力欄が現れる最小のデータベース数" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " @@ -6927,113 +6940,113 @@ msgid "" msgstr "" "軽快モードのみ。下の項目で定義する区切りが合った場合、ツリー表示になります。" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "ツリーレベルにデータベースを区切るための文字列" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "データベースツリーの区切り" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "ツリーレベルにテーブルを区切るための文字列" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "テーブルツリーの区切り" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "テーブルツリーの最大の深さ" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "マウスカーソルの下のサーバ名を強調表示します。" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "強調表示を有効にする" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Iconic navigation bar" msgid "Enable navigation tree expansion" msgstr "ナビゲーションバーのアイコン" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "最近使用したテーブルの最大数。0 で無効になります。" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "最近使用したテーブルの最大数。0 で無効になります。" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "最近使用したテーブル" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "編集、コピー、削除のリンクことです。" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "テーブルの行リンクを表示する場所" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "自然順" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" "「アイコンのみ表示」または「テキストのみ表示」または「アイコン/テキスト両方表" "示」。" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "テーブルナビゲーションバー" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip の出力バッファリング" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -7045,21 +7058,21 @@ msgstr "" "[kbd]SMART[/kbd] とは TIME、DATE、DATETIME、TIMESTAMP 型のカラムに対しては " "DESC、それ以外は ASC の並び順にします。" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "デフォルトの並び順" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Use persistent connections to MySQL databases" msgid "Use persistent connections to MySQL databases." msgstr "MySQL データベースへの永続的な接続を使用します。" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "永続的な接続" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7073,11 +7086,11 @@ msgstr "" "phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー" "タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -7089,11 +7102,11 @@ msgstr "" "cookie 認証で mcrypt 拡張がなかった場合、警告を表示します。チェックを入れると" "このメッセージは表示されません。" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7106,29 +7119,29 @@ msgstr "" "phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー" "タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。" -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "メニュータブの表示方法" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "バイナリカラムの保護" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -7138,49 +7151,49 @@ msgstr "" "環境保管領域の設定が必要です)。無効にした場合、クエリ履歴の表示に JavaScript " "を利用します (ウィンドウを閉じると履歴は消えます)。" -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "永続的なクエリの履歴" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, fuzzy #| msgid "How many queries are kept in history" msgid "How many queries are kept in history." msgstr "履歴に残るクエリの件数" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "クエリ履歴の長さ" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "コード変換エンジン" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "テーブルのソートを記憶する" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "プライマリキーのデフォルトの並び順" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -7189,93 +7202,93 @@ msgid "" msgstr "" "カラム名を何行おきに挿入するか。[kbd]0[/kbd] でこの機能は無効になります。" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "カラム名の差し込み間隔" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "リレーション表示カラム" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "サーバの表示オプション" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 #, fuzzy #| msgid "Save all edited cells at once" msgid "Grid editing: save all edited cells at once" msgstr "編集したセルを一度にすべて保存する" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "保存ディレクトリ" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "使用しない場合は空欄にします。" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "ホストの認証順番" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "デフォルトにする場合は空欄にします。" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "ホスト認証のルール" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "パスワードなしログインの許可" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "root ログインの許可" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "セッション値" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP 領域" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -7289,21 +7302,21 @@ msgstr "" "[a@http://swekey.com]SweKey ハードウェア認証[/a]用の設定ファイルのパス (ド" "キュメントルートには配置しないこと。/etc/swekey.conf がいいでしょう。)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey 設定ファイル" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "使用する認証方法" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "認証タイプ" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" @@ -7315,11 +7328,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]ブックマーク[/a]機能を使わない場合" "は空欄にします。[kbd]pma_bookmark[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "ブックマークテーブル" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -7331,36 +7344,36 @@ msgstr "" "カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。[kbd]" "pma_column_info[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "カラム情報テーブル" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "MySQL サーバと圧縮プロトコルで接続します。" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "圧縮通信を行う" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "接続方法" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "phpMyAdmin ユーザのパスワード" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7373,11 +7386,11 @@ msgstr "" "権限を制限して設定しておいた特別な MySQL ユーザを使います。詳細は [a@http://" "wiki.phpmyadmin.net/pma/controluser]wiki[/a] を参照してください。" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "phpMyAdmin ユーザ" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 #, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " @@ -7389,11 +7402,11 @@ msgstr "" "環境保管領域に対しての代替ホスト。空欄で既に定義されているホストを使用しま" "す。" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" 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 " @@ -7406,19 +7419,19 @@ msgstr "" "環境保管領域に対しての代替ホスト。空欄で既に定義されているホストを使用しま" "す。" -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control host" msgid "Control port" msgstr "環境保管領域ホスト" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, fuzzy #| msgid "Hide databases matching regular expression (PCRE)" msgid "Hide databases matching regular expression (PCRE)." msgstr "正規表現 (PCRE) で一致するデータベースを非表示にします。" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7426,15 +7439,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA の使用を無効にする" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "非表示にするデータベース" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7446,25 +7459,25 @@ msgstr "" "SQL クエリの履歴機能を使わない場合は空欄にします。[kbd]pma_history[/kbd] とし" "ておくのがいいでしょう。" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL クエリ履歴テーブル" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, fuzzy #| msgid "Hostname where MySQL server is running" msgid "Hostname where MySQL server is running." msgstr "稼働している MySQL サーバのホスト名" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "サーバのホスト名" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "ログアウト URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 #, fuzzy #| msgid "" #| "Limits number of table preferences which are stored in database, the " @@ -7476,17 +7489,17 @@ msgstr "" "データベースに保管されるテーブル環境設定の上限。古いものから自動的に削除され" "ます。" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "テーブル環境設定の最大保管数" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "スレーブのステータステーブルを閲覧する" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7497,13 +7510,13 @@ msgstr "" "PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] と" "しておくのがいいでしょう。" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "textarea の 1 行の文字数" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7515,17 +7528,17 @@ msgstr "" "PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] とし" "ておくのがいいでしょう。" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "パスワードなしでの接続を試みます。" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "パスワードなしで接続する" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -7545,21 +7558,21 @@ msgstr "" "力していき、最後に [kbd]'*'[/kbd] とだけ入力しておきます。[kbd]'*'[/kbd] は" "残ったものをアルファベット順に並べて表示する働きをします。" -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "リスト化したデータベースだけを表示する" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, fuzzy #| msgid "Leave empty if not using config auth" msgid "Leave empty if not using config auth." msgstr "config 認証を使用しない場合は空欄のままにします。" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "config 認証用のパスワード" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7569,11 +7582,11 @@ msgstr "" "PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] と" "しておくのがいいでしょう。" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF スキーマ:ページテーブル" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7589,23 +7602,23 @@ msgstr "" "れらの機能を使わない場合は空欄にします。[kbd]phpmyadmin[/kbd] としておくのが" "いいでしょう。" -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "データベース名" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "サーバのポート" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7617,11 +7630,11 @@ msgstr "" "最近使用したテーブルをセッションを跨いで「永続的に」記憶しない場合は空欄にし" "ます。[kbd]pma_recent[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" 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, " @@ -7633,13 +7646,13 @@ msgstr "" "最近使用したテーブルをセッションを跨いで「永続的に」記憶しない場合は空欄にし" "ます。[kbd]pma_recent[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "変数" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7651,11 +7664,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]リレーションリンク[/a]機能を使わな" "い場合は空欄にします。[kbd]pma_relation[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "リレーションテーブル" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7667,15 +7680,15 @@ msgstr "" "設定例は[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認証モード[/a]を" "参照してください。" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "サインオンセッション名" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "サインオン URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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." @@ -7683,21 +7696,21 @@ msgstr "" "MySQL サーバで開いているソケット。デフォルトにしたい場合は空欄のままにしま" "す。" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "サーバのソケット" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL を使用する" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7709,13 +7722,13 @@ msgstr "" "PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] とし" "ておくのがいいでしょう。" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF スキーマ:テーブルの座標" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " @@ -7727,11 +7740,11 @@ msgstr "" "表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。[kbd]" "pma_table_info[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "表示するカラムためのテーブル" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables'UI preferences across sessions, " @@ -7743,11 +7756,11 @@ msgstr "" "テーブルに対する環境設定をセッションを跨いで「永続的に」記憶しない場合は空欄" "にします。[kbd]pma_table_uiprefs[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "テーブルに対する環境設定を保管するテーブル" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7755,11 +7768,11 @@ msgstr "" "データベースを作成するときにログの最初の行に DROP DATABASE IF EXISTS 文を追加" "するかどうか。" -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "DROP DATABASE を追加する" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7767,11 +7780,11 @@ msgstr "" "テーブルを作成するときにログの最初の行に DROP TABLE IF EXISTS 文を追加するか" "どうか。" -#: libraries/config/messages.inc.php:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "DROP TABLE を追加する" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7779,19 +7792,19 @@ msgstr "" "ビューを作成するときにログの最初の行に DROP VIEW IF EXISTS 文を追加するかどう" "か。" -#: libraries/config/messages.inc.php:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "DROP VIEW を追加する" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "新しい世代に対して自動生成使用するコマンドのリストを定義します。" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "追跡するコマンド" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -7803,11 +7816,11 @@ msgstr "" "SQL コマンドの追跡機能を使わない場合は空欄にします。[kbd]pma_tracking[/kbd] " "としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL コマンド追跡テーブル" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7815,11 +7828,11 @@ msgstr "" "SQL コマンドの追跡機能が、テーブルやビューに対して自動的に世代を作成するかど" "うか。" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "世代の自動作成" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7831,37 +7844,37 @@ msgstr "" "データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/" "kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "ユーザ環境保管テーブル" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "利用するテーブル" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "ホストテーブルを使う" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7873,15 +7886,15 @@ msgstr "" "データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/" "kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "config 認証用のユーザ" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7889,21 +7902,21 @@ msgstr "" "このサーバのわかりやすい説明。ホスト名をそのまま表示させる場合には、空欄のま" "まにします。" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "このサーバの詳細な名前" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "すべての行の表示を許可する" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy #| msgid "" #| "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -7920,26 +7933,26 @@ msgstr "" "れはパスワード変更コマンドに対して直接実行する機能を制限するものではありませ" "ん。" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "パスワード変更フォームを表示する" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "「データベースを作成する」の部分を表示する" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 #, 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "作成日時を表示する" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last update timestamp for all tables" @@ -7947,11 +7960,11 @@ msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "テーブル一覧において最終更新日時の列を表示させるかどうか" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "最終更新日時を表示する" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last check timestamp for all tables" @@ -7959,11 +7972,11 @@ msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "テーブル一覧において最終検査日時の列を表示させるかどうか" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "最終検査日時を表示する" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 #, fuzzy #| msgid "" #| "Defines whether or not type fields should be initially displayed in edit/" @@ -7973,31 +7986,31 @@ msgid "" "insert mode." msgstr "編集/挿入モードでデータ型項目を表示するかどうか定義します。" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "データ型項目を表示する" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "関数項目を表示する" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, fuzzy #| msgid "Whether to show hint or not" msgid "Whether to show hint or not." msgstr "操作ヒントを表示するかどうか。" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "操作ヒントを表示する" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -8009,15 +8022,15 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] の結果へのリンク" "を表示します。" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "phpinfo() リンクを表示する" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "詳細な MySQL サーバ情報を表示する" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -8026,11 +8039,11 @@ msgid "" msgstr "" "phpMyAdmin によって生成される SQL クエリを表示するかどうかを定義します。" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "SQL クエリを表示する" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 #, fuzzy #| msgid "" #| "Defines whether the query box should stay on-screen after its submission" @@ -8038,21 +8051,21 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "送信後もクエリボックスを画面上に残しておくかどうかを定義します。" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "クエリボックスを保持する" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "統計を表示する" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy #| msgid "" #| "Mark used tables and make it possible to show databases with locked tables" @@ -8062,11 +8075,11 @@ msgstr "" "使われているテーブルには印をして、テーブルがロックされていても可能であれば" "データベースを閲覧します。" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "ロックされているテーブルをスキップする" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 #, fuzzy #| msgid "A warning is displayed on the main page if Suhosin is detected" msgid "A warning is displayed on the main page if Suhosin is detected." @@ -8074,11 +8087,11 @@ msgstr "" "Suhosin が検出された場合、警告をメインページに表示します。チェックを入れると" "このメッセージは表示されません。" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin 警告" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -8092,13 +8105,13 @@ msgstr "" "phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー" "タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "ログインクッキーの有効期間" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 #, fuzzy #| msgid "" #| "Textarea size (columns) in edit mode, this value will be emphasized for " @@ -8110,11 +8123,11 @@ msgstr "" "編集モードでの textarea の 1 行の文字数。SQL クエリ用のでは 2 倍、クエリウィ" "ンドウに対しては 1.25 倍になります。" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "textarea の 1 行の文字数" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 #, fuzzy #| msgid "" #| "Textarea size (rows) in edit mode, this value will be emphasized for SQL " @@ -8126,39 +8139,39 @@ msgstr "" "編集モードでの textarea の行数。SQL クエリ用のでは 2 倍、クエリウィンドウに対" "しては 1.25 倍になります。" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "textarea の行数" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 #, 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:784 +#: libraries/config/messages.inc.php:786 #, 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "デフォルトタイトル" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 #, 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:788 +#: libraries/config/messages.inc.php:790 #, 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:790 +#: libraries/config/messages.inc.php:792 #, fuzzy #| msgid "" #| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following " @@ -8176,31 +8189,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "信頼されたプロキシのリスト(IP アドレスの許可/拒否)" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "アップロードディレクトリ" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, fuzzy #| msgid "Allow for searching inside the entire database" msgid "Allow for searching inside the entire database." msgstr "全てのデータベース内を検索することを許可します。" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "データベース検索を使用する" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 #, fuzzy #| msgid "" #| "When disabled, users cannot set any of the options below, regardless of " @@ -8212,28 +8225,28 @@ msgstr "" "無効にすると、右端のチェックボックスに関係なく、ユーザが以下のオプションを設" "定することはできません。" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "設定に開発者向けタブを追加する" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "バージョンアップの確認" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 #, 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -8241,34 +8254,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "ユーザ名" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "パスワード" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -8278,58 +8291,58 @@ msgid "" "for import and export operations." msgstr "" "インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/" -"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] 圧縮を有効にします。" +"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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "サーバのポート" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "実行されたクエリ" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8351,46 +8364,46 @@ msgstr "HTTP 認証" msgid "Signon authentication" msgstr "サインオン認証" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "LOAD DATA 文を使用した CSV の読み込み" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Open Document スプレッドシート" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "簡易" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "詳細" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "データベースエクスポートオプション" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excel 用の CSV" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8624,20 +8637,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "パスワード無し" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "パスワード:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8782,8 +8795,8 @@ msgstr "、@TABLE@ はテーブル名に" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用" "することができます。また、埋め込み変数変換も行われます(%3$s変換されま" @@ -9356,8 +9369,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" @@ -9847,7 +9860,7 @@ msgstr "ログアウト" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin のドキュメント" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -10546,11 +10559,11 @@ msgstr "%s へようこそ" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2" -"$s を利用して設定ファイルを作成してください。" +"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ" +"ト%2$s を利用して設定ファイルを作成してください。" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10789,7 +10802,7 @@ msgstr "1 行目にカラム名を追加する" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11867,7 +11880,7 @@ msgstr "" "さい。もしそうでないならば、[mysqld] セクションに以下の行を追加してください。" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11875,16 +11888,16 @@ msgstr "ユーザ名" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "ユーザ名" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "パスワード" @@ -11914,10 +11927,10 @@ msgstr "サーバ ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "ホスト" @@ -11931,40 +11944,40 @@ msgstr "" "されます。" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "すべてのホスト" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "ローカル" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "このホスト" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "すべてのユーザ" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "テキスト入力項目の値を利用する" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "ホストテーブルを使う" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11973,7 +11986,7 @@ msgstr "" "るホストテーブルに格納されている値を設定します。" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "もう一度入力してください" @@ -12748,7 +12761,7 @@ msgstr "なし" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12816,14 +12829,14 @@ msgstr "ユーザの同時接続数を制限する。" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "テーブル固有の特権" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12834,7 +12847,7 @@ msgid "Administration" msgstr "管理" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "グローバル特権" @@ -12845,7 +12858,7 @@ msgid "Global" msgstr "グローバル" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "データベースに固有の特権" @@ -12862,272 +12875,272 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "特権テーブルの再読み込みなしでユーザ・特権の追加を許可する。" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "ログイン情報" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "テキスト入力項目の値を利用する" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "パスワードは変更しない" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s のパスワードは正しく変更されました。" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s の特権を取り消しました。" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "ユーザを追加する" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "ユーザ専用データベース" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "同名のデータベースを作成してすべての特権を与える。" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える。" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "データベース \"%s\" への全ての特権を与える。" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" にアクセスできるユーザ" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "ビュー %s を破棄しました。" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "ユーザ" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "権限委譲" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "ユーザが存在しません。" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "すべて" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "グローバル" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "データベース固有" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "ワイルドカード" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "データベース固有" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "特権を編集" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "取り消し" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "サーバの編集" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "元のユーザも残す。" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する。" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する。" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権の再読み込みをする。" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "ログイン情報の変更 / ユーザの複製" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "同じ特権を持つ新しいユーザを作る…" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "このカラムに固有の特権" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "データベースに特権を追加" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "_ や % というワイルドカードを文字として使用するときは \\ でエスケープしてくだ" "さい。" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "テーブルに特権を追加" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "選択したユーザを削除する" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "特権をすべて取り消してユーザを削除する。" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "ユーザと同名のデータベースを削除する。" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "削除するユーザが選択されていません!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "特権を再読み込みしています" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "選択されたユーザは正常に削除されました。" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "%s の特権を更新しました。" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s を削除中です" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "特権を正常に再読み込みしました。" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "ユーザ %s は既に存在します!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "%s に対する特権" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "新規作成" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "特権を編集" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "ユーザ概略" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" "作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください。" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません。" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "新しいユーザを追加しました。" @@ -14598,7 +14611,6 @@ msgid "Improve table structure" msgstr "テーブル構造を確認する" #: libraries/structure.lib.php:1655 -#| msgid "Track table" msgid "Track view" msgstr "追跡の閲覧" @@ -14999,23 +15011,23 @@ msgstr "インデックスキャッシュの大きさ" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "インデックスの種類:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "ユーザ:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "コメント" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -16110,8 +16122,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "クエリキャッシュの総量に対するクエリキャッシュの空きメモリの割合は、%s%% で" "す。この値は、80%% 以上がいいと言われています" @@ -16268,8 +16280,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "全ソートの内 %s%% が一時テーブルを使用しています。この値は、10%% 未満がいいと" "言われています。" @@ -16821,8 +16833,8 @@ msgstr "" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" -"Max_used_connections は max_connections の %s%% になっています。この値は、80%" -"% 未満がいいと言われています" +"Max_used_connections は max_connections の %s%% になっています。この値は、" +"80%% 未満がいいと言われています" #: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" @@ -17041,10 +17053,10 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" -"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが 60%" -"% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを使" -"用していない、もしくは同マシン上で他のサービスを稼動させていないのであれば、" -"ご使用のシステムではこの設定で十分かもしれません。" +"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが " +"60%% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを" +"使用していない、もしくは同マシン上で他のサービスを稼動させていないのであれ" +"ば、ご使用のシステムではこの設定で十分かもしれません。" #: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" diff --git a/po/ka.po b/po/ka.po index f7b093f155..69be012be0 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-03-27 15:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian \n" +"Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.9-dev\n" @@ -69,7 +69,7 @@ msgstr "ცხრილის კომენტარები" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "სვეტები" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "პირველადი" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "არა" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -270,14 +270,14 @@ msgstr "" "deactivated. To find out why click %shere%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "ცხრილი" @@ -290,7 +290,7 @@ msgid "Rows" msgstr "სტრიქონები" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "ზომა" @@ -384,9 +384,9 @@ msgstr "სტატუსი" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -583,15 +583,15 @@ msgstr "გეომეტრიის დამატება" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -626,8 +626,8 @@ msgstr "სრული ჩასმები" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -702,7 +702,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "უკან" @@ -727,7 +727,7 @@ msgid "General Settings" msgstr "General relation features" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "პაროლის შეცვლა" @@ -826,7 +826,7 @@ msgstr "ინფორმაცია ვერსიის შესახე #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "დოკუმენტაცია" @@ -1120,7 +1120,7 @@ msgstr "ახალი ველის დამატება" msgid "Edit Index" msgstr "რედაქტირების რეჟიმი" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1158,7 +1158,7 @@ msgstr "You have to add at least one field." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1195,12 +1195,12 @@ msgstr "ჰოსტის სახელის ველი ცარიელ msgid "The user name is empty!" msgstr "მომხმარებლის სახელის ველი ცარიელია!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "პაროლის ველი ცარიელია!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "პაროლებში შეუსაბამობაა!" @@ -1425,7 +1425,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1735,7 +1735,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1988,7 +1988,7 @@ msgstr "SQL Query box" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2260,7 +2260,7 @@ msgstr "Data pointer size" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "იგნორირება" @@ -2452,7 +2452,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "ყველაფრის ჩვენება" @@ -2565,7 +2565,7 @@ msgstr "ახალი ველის დამატება" msgid "Show hidden navigation tree items." msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize export options" @@ -3135,16 +3135,16 @@ msgid "Delete" msgstr "წაშლა" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3279,7 +3279,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3731,8 +3731,8 @@ msgstr "%s databases have been dropped successfully." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3769,6 +3769,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3784,12 +3785,12 @@ msgstr "შეცვლა" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3988,7 +3989,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "სერვერი" @@ -4003,11 +4004,11 @@ msgstr "ხედო" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -4023,7 +4024,7 @@ msgstr "სტრუქტურა" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4049,9 +4050,9 @@ msgstr "ჩასმა" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "პრივილეგიები" @@ -4113,9 +4114,9 @@ msgid "Central columns" msgstr "CHAR textarea columns" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "მონაცემთა ბაზები" @@ -4244,7 +4245,7 @@ msgid "Recent" msgstr "დაბრუნება" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4322,7 +4323,7 @@ msgstr "დალაგება" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4710,14 +4711,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4971,7 +4972,7 @@ msgstr "მაქს: %s%s" msgid "MySQL said: " msgstr "MySQL-მა თქვა: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL-ის ახსნა" @@ -4983,7 +4984,7 @@ msgstr "" msgid "Without PHP Code" msgstr "PHP კოდის გარეშე" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" @@ -5105,13 +5106,13 @@ msgstr "აღწერილობა" msgid "Use this value" msgstr "გამოიყენეთ ეს ველი" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5547,7 +5548,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -6006,77 +6007,89 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Enclose table and field names with backquotes" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Enclose table and field names with backquotes" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "ცხრილის სტრუქტურის შეთავაზება" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "ცხრილის სტრუქტურის შეთავაზება" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "სერვერების სიის სახით ჩვენება" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Table maintenance" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Statements" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "ფაილის სახის შენახვა" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "სომბოლოთა ნაკრები ფაილისათვის" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "ფორმატი" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "შეკუმშვა" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -6088,72 +6101,72 @@ msgstr "შეკუმშვა" msgid "Put columns names in the first row" msgstr "Put fields names in the first row" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Fields enclosed by" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Fields escaped by" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "Replace NULL by" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel edition" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6164,374 +6177,374 @@ msgstr "" msgid "Dump table" msgstr "%s table(s)" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-ის ტიპი" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Export type" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "სერვერზე შენახვა" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Enclose table and field names with backquotes" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Create new table on database %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "Export type" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "ექსპორტის დრო UT- ში" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "დათვალიერების რეჟიმი" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Browse mode" msgid "Customize browse mode." msgstr "დათვალიერების რეჟიმი" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options." msgstr "Customize default export options" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "რედაქტირების რეჟიმი" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize export options" msgid "Customize edit mode." msgstr "Customize export options" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "Customize default export options" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "დაგენერირება" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default export options" msgid "Customize default common import options." msgstr "Customize default export options" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "იმპორტი / ექსპორტი" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "ნავიგაციის ჩარჩო" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy msgid "Customize appearance of the navigation panel." msgstr "Customize navigation frame" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "სერვერები" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "სერვერის ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "ცხრილების ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "მთავარი ჩარჩო" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "გვერდის ნომერი:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "უსაფრთხოება" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "ძირითადი პარამეტრები" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings." msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "სერვერის კონფიგურაცია" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "MySQL connection collation" msgid "Enter server connection parameters." msgstr "MySQL კავშირის კოლაცია" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "კონფიგურაციის ფაილი" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "figure phpMyAdmin database to gain access to additional features, see ../" @@ -6546,138 +6559,138 @@ msgstr "" "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " "documentation" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy msgid "Customize navigation panel" msgstr "Customize navigation frame" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize export options" msgid "Customize main panel" msgstr "Customize export options" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL მოთხოვნები" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings." msgstr "SQL მოთხოვნები" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize export options" msgid "Customize startup page." msgstr "Customize export options" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "დაფები" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relational schema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "გვერდის ზომა" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields." msgstr "Customize export options" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Customize default export options" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Warning" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " @@ -6689,146 +6702,146 @@ msgstr "" "[a@http://ka.wikipedia.org/wiki/Bzip2]bzip2[/a] შეკუმშვის ჩართვა " "იმპორტირების და ექსპორტირების ოპერაციებისთვის" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "შემოტანილი ფაილების ფორმატი" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Put fields names in the first row" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start." msgstr "Number of records (queries) to skip from start" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Add AUTO_INCREMENT value" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "ჩასმული სტრიქონების რაოდენობა" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "Maximum number of characters used when a SQL query is displayed" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6836,164 +6849,164 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Maximum number of characters used when a SQL query is displayed" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "Maximum size for temporary sort files" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "მეხსიერების შეზღუდვა" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "ლოგოს ჩვენება" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "Show logo in left frame" msgid "URL where logo in the navigation panel will point to." msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "" @@ -7001,120 +7014,120 @@ msgid "" "display a filter box." msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of items to display the filter box" msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of databases to display the database filter box" msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy msgid "Enable navigation tree expansion" msgstr "Customize navigation frame" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy msgid "Recently used tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alter table order by" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy msgid "Table navigation bar" msgstr "Customize navigation frame" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "d]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -7126,72 +7139,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Use persistent connections to MySQL databases." msgstr "MySQL სერვერთან კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Protect binary fields" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 #, fuzzy #| msgid "" #| "ble if you want DB-based query history (requires phpMyAdmin configuration " @@ -7206,153 +7219,153 @@ msgstr "" "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Rename table to" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Repair threads" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display field" msgid "Relational display" msgstr "Relational display field" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "სერვერის ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "დირექტორიის შენახვა" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Host authentication order" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Host authentication rules" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "root-ით შესვლის ნებართვა" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "სესიის მნიშვნელობა" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication type" msgid "Authentication method to use." msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7363,11 +7376,11 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" 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]" @@ -7378,86 +7391,86 @@ 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 "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "MySQL სერვერთან კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "კავშირის ტიპი" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Control user" msgid "Control host" msgstr "Control user" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control user" msgid "Control port" msgstr "Control user" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA-ის გამოყენების აკრძალვა" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "მონაცემთა ბაზების დამალვა" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7468,39 +7481,39 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "სერვერის ჰოსტის სახელი" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 #, 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:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7511,13 +7524,13 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns table" msgstr "CHAR textarea columns" -#: 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]" @@ -7528,17 +7541,17 @@ 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 "Connect without password" msgid "Try to connect without password." msgstr "პაროლის გარეშე დაკავშირება" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "პაროლის გარეშე დაკავშირება" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 #, fuzzy #| msgid "" #| " can use MySQL wildcard characters (% and _), escape them if you want use " @@ -7551,19 +7564,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7573,33 +7586,33 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "მონაცემთა ბაზა" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "სერვერის პორტი" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7610,13 +7623,13 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Recall user name" -#: 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]" @@ -7627,13 +7640,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 "Variables" msgid "Favorites 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]" @@ -7644,43 +7657,43 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL-ის გამოყენება" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7691,11 +7704,11 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "le to describe the display fields, leave blank for no support; gested: " @@ -7707,13 +7720,13 @@ msgstr "" "Table to describe the display fields, leave blank for no support; suggested: " "[kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Display fields table" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7724,51 +7737,51 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "UI პარამეტრების მაგიდა" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Statements" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7779,25 +7792,25 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatic recovery mode" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7808,35 +7821,35 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "გამოიყენე ცხრილები" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7847,225 +7860,225 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "პაროლის შეცვლის ფორმის ჩვენება" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "მონაცემთა ბაზის შექმნის ფორმის ჩვენება" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "PHP-ის ინფორმაციის ჩვენება" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy msgid "Show Last check timestamp" msgstr "Show slave status" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Show open tables" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "ფუნქციების ველების ჩვენება" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Show grid" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "phpinfo() ბმულის ჩვენება" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "MySQL სერვერის შესახებ დეტალური ინფორმაციის ჩვენება" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "SQL მოთხოვნების ჩვენება" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "SQL Query box" msgid "Retain query box" msgstr "SQL Query box" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "სტატისტიკის ჩევნება" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR textarea columns" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR textarea rows" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Default table tab" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -8073,52 +8086,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "ატვირთვის დირექტორია" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -8126,33 +8139,33 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "მომხმარებელი:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "პაროლი" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " @@ -8164,53 +8177,53 @@ msgstr "" "[a@http://ka.wikipedia.org/wiki/Bzip2]bzip2[/a] შეკუმშვის ჩართვა " "იმპორტირების და ექსპორტირების ოპერაციებისთვის" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "სერვერის პორტი" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8238,48 +8251,48 @@ msgstr "HTTP ავტორიზაცია" msgid "Signon authentication" msgstr "Host authentication order" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Custom color" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "მონაცემთა ბაზის ექსპორტის პარამეტრები" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV MS Excel-თვის" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8528,20 +8541,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "პაროლი არაა" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "პაროლი:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8711,16 +8724,16 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: %3" -#| "$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: " +#| "%3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:526 msgid "use this for future exports" @@ -9251,8 +9264,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9743,7 +9756,7 @@ msgstr "გამოსვლა" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-ის დოკუმენტაცია" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "Customize navigation frame" @@ -10430,8 +10443,8 @@ msgstr "მოგესალმებათ %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10696,7 +10709,7 @@ msgstr "Put fields names in the first row" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11756,7 +11769,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11764,16 +11777,16 @@ msgstr "მომხმარებლის სახელი" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "მომხმარებლის სახელი" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "პაროლი" @@ -11804,10 +11817,10 @@ msgstr "სერვერის ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "ჰოსტი" @@ -11819,47 +11832,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "ნებისმიერი ჰოსტი" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "ლოკალური" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "ეს ჰოსტი" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "ნებისმიერი მომხმარებელი" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "გამოიყენე ტექსტური ველი" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -12686,7 +12699,7 @@ msgstr "არაა" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12753,14 +12766,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12769,7 +12782,7 @@ msgid "Administration" msgstr "ადმინისტრირება" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "გლობალური პრივილეგიები" @@ -12780,7 +12793,7 @@ msgid "Global" msgstr "გლობალულრი" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -12797,148 +12810,148 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "არ შეცვალო პაროლი" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "მომხმარებლის დამატება" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "View %s has been dropped" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "მომხმარებელი" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Grant" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "ნებისმიერი" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "გლობალულრი" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "wildcard" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "პრივილეგიების რედაქტირება" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "სერვერის რედაქტირება" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… ძველის შენახვა." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12946,122 +12959,122 @@ msgstr "" "… ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s-ის წაშლა" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "მომხმარებელი %s უკვე არსებობს!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "პრივილეგიები" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "პრივილეგიების რედაქტირება" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "მომხმარებლის მიმოხილვა" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." @@ -14857,23 +14870,23 @@ msgstr "ინდექსის სახელი:" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "ინდექსის ტიპი:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "მომხმარებელი" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "კომენტარი" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15936,8 +15949,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -16071,8 +16084,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/kk.po b/po/kk.po index 4614102a5d..c99ead2d9a 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-03-31 14:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kazakh \n" +"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: kk\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -73,7 +73,7 @@ msgstr "Кестеге түсініктеме:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -97,7 +97,7 @@ msgstr "Бағана" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -153,8 +153,8 @@ msgid "Links to" msgstr "Сілтемелер" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -183,13 +183,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -212,13 +212,13 @@ msgstr "Жоқ" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -274,14 +274,14 @@ msgstr "" "Себебін анықтау үшін %sмұнда%s басыңыз." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Кесте" @@ -294,7 +294,7 @@ msgid "Rows" msgstr "Қатарлар" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Мөлшері" @@ -386,9 +386,9 @@ msgstr "Күй" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -595,15 +595,15 @@ msgstr "Геометрияны қосу" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -642,11 +642,11 @@ msgstr "" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Мүмкін, жүктегелі отырған файлдың өлшемі тым үлкен. Осы шектеуді айналып өту " "әдістері, %sқұжаттамада%s сипатталған." @@ -723,7 +723,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Артқа" @@ -744,7 +744,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -831,7 +831,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -1080,7 +1080,7 @@ msgstr "Индекс қосу" msgid "Edit Index" msgstr "Индексті өзгерту" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add columns" msgid "Add %s column(s) to index" @@ -1110,7 +1110,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1144,12 +1144,12 @@ msgstr "Хост аты бос тұр!" msgid "The user name is empty!" msgstr "Қолданушы аты бос тұр!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Құпия сөз бос тұр!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Құпия сөздер бір-біріне ұқсамайды!" @@ -1351,7 +1351,7 @@ msgstr "Тәңiр жарылқасын, ең болмаса топтамаға #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1623,7 +1623,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1836,7 +1836,7 @@ msgstr "Сұраныс өрісін көрсету" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2096,7 +2096,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Елемеу" @@ -2278,7 +2278,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Бәрін көрсету" @@ -2384,7 +2384,7 @@ msgstr "Индекстерді жасыру" msgid "Show hidden navigation tree items." msgstr "Индекстерді көрсету" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Hide indexes" @@ -2888,16 +2888,16 @@ msgid "Delete" msgstr "Жою" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3027,7 +3027,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3445,8 +3445,8 @@ msgstr "SQL-сұранысы сәтті орындалды" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3482,6 +3482,7 @@ msgstr "Белгi соғылғандарды:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3497,12 +3498,12 @@ msgstr "Өзгерту" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3693,7 +3694,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3708,11 +3709,11 @@ msgstr "Түр" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3728,7 +3729,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3754,9 +3755,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3818,9 +3819,9 @@ msgid "Central columns" msgstr "Бағаналар қосу" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Дерекқоры" @@ -3936,7 +3937,7 @@ msgid "Recent" msgstr "Ұсыныс" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Tracked tables" msgid "Favorite tables" @@ -4013,7 +4014,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4376,14 +4377,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4633,7 +4634,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4645,7 +4646,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4762,13 +4763,13 @@ msgstr "Сипаттама" msgid "Use this value" msgstr "Осы мәнді қолданыңыз" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5172,7 +5173,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5526,74 +5527,82 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 #, fuzzy #| msgid "Databases" msgid "Whether the table structure actions should be hidden." msgstr "Мәлімет қорлары" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Databases" msgid "Hide table structure actions" msgstr "Мәлімет қорлары" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5603,60 +5612,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5665,600 +5674,600 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қосу" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Қосу %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Database comment:" msgid "Databases display options." msgstr "Дерекқорына түсініктеме: " -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Table comments" msgid "Tables display options." msgstr "Кестеге түсініктеме:" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Hide indexes" msgid "Main panel" msgstr "Индекстерді жасыру" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Current settings" msgid "Authentication settings." msgstr "Ағымдағы баптау" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "Current settings" msgid "SQL queries settings." msgstr "Ағымдағы баптау" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "Мәлімет қорлары" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "Мәлімет қорлары" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6266,1060 +6275,1060 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show indexes" msgid "Show databases navigation as tree" msgstr "Индекстерді көрсету" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Table comments" msgid "Show logo in navigation panel." msgstr "Кестеге түсініктеме:" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table comments" msgid "Enable navigation tree expansion" msgstr "Кестеге түсініктеме:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table comments" msgid "Table navigation bar" msgstr "Кестеге түсініктеме:" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "No data found" msgid "Relational display" msgstr "Мәліметтер жоқ" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Table comments" msgid "For display Options" msgstr "Кестеге түсініктеме:" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add columns" msgid "Central columns table" msgstr "Бағаналар қосу" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Tracked tables" msgid "Favorites table" msgstr "Қадағаланатын кестелер" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Кестелерді қолдану" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7327,52 +7336,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7380,84 +7389,84 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username:" msgid "Proxy username" msgstr "Қолданушы:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password:" msgid "Proxy password" msgstr "Құпия сөз:" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Enable Zero Configuration mode" @@ -7479,44 +7488,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7734,20 +7743,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Құпия сөз:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7886,8 +7895,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8393,8 +8402,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8865,7 +8874,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin құжаттамасы" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Table comments" msgid "Reload navigation panel" @@ -9536,8 +9545,8 @@ msgstr "%s-ге қош келдіңіз" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9765,7 +9774,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10702,7 +10711,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "Username:" msgid "User name:" @@ -10710,16 +10719,16 @@ msgstr "Қолданушы:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10747,10 +10756,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10762,45 +10771,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11523,7 +11532,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11590,14 +11599,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11606,7 +11615,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11615,7 +11624,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11632,255 +11641,255 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Қолданушыны қосу" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit Privileges:" msgstr "Артықшылықтардың қайта қосылуы" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13554,23 +13563,23 @@ msgstr "Индекстер" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "Username:" msgid "Parser:" msgstr "Қолданушы:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Пікірлеу" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -14588,8 +14597,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14714,8 +14723,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/km.po b/po/km.po index cb066401f4..e6d7349427 100644 --- a/po/km.po +++ b/po/km.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-04-19 18:59+0200\n" "Last-Translator: Sovichet Tep \n" "Language-Team: Central Khmer \n" +"Language: km\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.9-dev\n" @@ -70,7 +70,7 @@ msgstr "មតិយោបល់​តារាង៖" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -94,7 +94,7 @@ msgstr "ជួរឈរ" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -150,8 +150,8 @@ msgid "Links to" msgstr "តំណ​ទៅ​កាន់" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -180,13 +180,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -209,13 +209,13 @@ msgstr "ទេ" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -269,14 +269,14 @@ msgstr "" "មូលហេតុ។" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "តារាង" @@ -289,7 +289,7 @@ msgid "Rows" msgstr "ជួរដេក" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "ទំហំ" @@ -378,9 +378,9 @@ msgstr "ស្ថានភាព" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -573,15 +573,15 @@ msgstr "បន្ថែម​ធរណីមាត្រ" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -614,8 +614,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -689,7 +689,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "បកក្រោយ" @@ -710,7 +710,7 @@ msgid "General Settings" msgstr "ការ​កំណត់​ទូទៅ" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "ប្ដូរ​ពាក្យ​សម្ងាត់" @@ -785,7 +785,7 @@ msgstr "ព័ត៌មាន​អំពី​កំណែ៖" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -1028,7 +1028,7 @@ msgstr "បន្ថែម​សន្ទស្សន៍" msgid "Edit Index" msgstr "កែ​សន្ទស្សន៍" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "បន្ថែម​ជួរ​ឈរ %s ទៅ​សន្ទស្សន៍" @@ -1057,7 +1057,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1086,12 +1086,12 @@ msgstr "" msgid "The user name is empty!" msgstr "ឈ្មោះ​អ្នក​ប្រើ​នៅ​ទទេ!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "ពាក្យ​សម្ងាត់​នៅ​ទទេ!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "ពាក្យ​សម្ងាត់​មិន​ដូច​គ្នា!" @@ -1288,7 +1288,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1560,7 +1560,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1771,7 +1771,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2019,7 +2019,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2196,7 +2196,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2294,7 +2294,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2787,16 +2787,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2920,7 +2920,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3302,8 +3302,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3338,6 +3338,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3353,12 +3354,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3547,7 +3548,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3562,11 +3563,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3582,7 +3583,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3608,9 +3609,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3670,9 +3671,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3780,7 +3781,7 @@ msgid "Recent" msgstr "ថ្មីៗ" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "តារាង​ដែល​ពេញ​ចិត្ត" @@ -3851,7 +3852,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4192,14 +4193,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4447,7 +4448,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4459,7 +4460,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4572,13 +4573,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4973,7 +4974,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5327,70 +5328,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5400,60 +5409,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5462,586 +5471,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6049,1044 +6058,1044 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "តារាង​ដែល​ពេញ​ចិត្ត" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7094,52 +7103,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7147,80 +7156,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7240,44 +7249,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7487,20 +7496,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7635,8 +7644,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8132,8 +8141,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8588,7 +8597,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9233,8 +9242,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9457,7 +9466,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10368,22 +10377,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10411,10 +10420,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10426,45 +10435,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11180,7 +11189,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11245,14 +11254,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11261,7 +11270,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11270,7 +11279,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11287,253 +11296,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13140,21 +13149,21 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "អ្នកប្រើ៖" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -14108,8 +14117,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14227,8 +14236,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/kn.po b/po/kn.po index f2951fd6d1..b426a46dc8 100644 --- a/po/kn.po +++ b/po/kn.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-12-24 02:27+0200\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Kannada \n" +"Language: kn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: kn\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2-dev\n" @@ -69,7 +69,7 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "ಯಾವುದೇ" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "" @@ -371,9 +371,9 @@ msgstr "" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -564,15 +564,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -603,8 +603,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -676,7 +676,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -697,7 +697,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -770,7 +770,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -990,7 +990,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1017,7 +1017,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1046,12 +1046,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1248,7 +1248,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1519,7 +1519,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1730,7 +1730,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1970,7 +1970,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2139,7 +2139,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2231,7 +2231,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2714,16 +2714,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2838,7 +2838,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3212,8 +3212,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3248,6 +3248,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3263,12 +3264,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3455,7 +3456,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3470,11 +3471,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3490,7 +3491,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3516,9 +3517,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3578,9 +3579,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3688,7 +3689,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "" @@ -3759,7 +3760,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4100,14 +4101,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4355,7 +4356,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4367,7 +4368,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4478,13 +4479,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4871,7 +4872,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5225,70 +5226,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5298,60 +5307,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5360,586 +5369,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5947,1042 +5956,1042 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -6990,52 +6999,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7043,80 +7052,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7136,44 +7145,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7377,20 +7386,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7525,8 +7534,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8016,8 +8025,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8472,7 +8481,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9110,8 +9119,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9334,7 +9343,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10230,22 +10239,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "ಬಳಕೆಯ ಹೆಸರು:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "ಬಳಕೆಯ ಹೆಸರು" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10273,10 +10282,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10288,45 +10297,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11043,7 +11052,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11108,14 +11117,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11124,7 +11133,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11133,7 +11142,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11150,253 +11159,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "ಸದಸ್ಯ" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -12989,21 +12998,21 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "ಸದಸ್ಯ:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -13949,8 +13958,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14068,8 +14077,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/ko.po b/po/ko.po index 1d254d7df9..01597b35a6 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-10 18:31+0200\n" "Last-Translator: Bumsoo Kim \n" "Language-Team: Korean \n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.3-dev\n" @@ -67,7 +67,7 @@ msgstr "테이블 설명:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "컬럼명" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "링크 대상" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "기본" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "아니오" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "클릭%s하십시오." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "테이블" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "행" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "크기" @@ -370,9 +370,9 @@ msgstr "상태" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -563,15 +563,15 @@ msgstr "공간 데이터를 추가" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -604,11 +604,11 @@ msgstr "불완전한 인자" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %" -"sdocumentation%s를 참조하여 주십시오." +"너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 " +"%sdocumentation%s를 참조하여 주십시오." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -690,7 +690,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "뒤로" @@ -713,7 +713,7 @@ msgid "General Settings" msgstr "일반 설정" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "암호 변경" @@ -788,7 +788,7 @@ msgstr "버전 정보:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "문서" @@ -919,8 +919,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Server 가 Suhosin 으로 운영중입니다. 이로 인해 발생할 수 있는 문제는 %" -"sdocumentation%s 에서 확인이 가능합니다." +"Server 가 Suhosin 으로 운영중입니다. 이로 인해 발생할 수 있는 문제는 " +"%sdocumentation%s 에서 확인이 가능합니다." #: js/messages.php:29 libraries/import.lib.php:125 sql.php:143 msgid "\"DROP DATABASE\" statements are disabled." @@ -1054,7 +1054,7 @@ msgstr "인덱스 추가" msgid "Edit Index" msgstr "인덱스 수정" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "인덱스에 %s 열 추가" @@ -1081,7 +1081,7 @@ msgstr "적어도 한 개 이상의 컬럼을 추가해야 합니다." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "SQL 미리보기" @@ -1110,12 +1110,12 @@ msgstr "호스트명이 없습니다!" msgid "The user name is empty!" msgstr "사용자명이 없습니다!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "암호가 없습니다!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" @@ -1315,7 +1315,7 @@ msgstr "하나 이상의 변수를 시리즈에 추가하십시오!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1601,7 +1601,7 @@ msgstr "가져온 설정과 차트 격자를 그리는데 실패했습니다. #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1812,7 +1812,7 @@ msgstr "질의 상자 보이기" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2054,7 +2054,7 @@ msgstr "데이터 포인트 내용" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "무시" @@ -2233,7 +2233,7 @@ msgstr "칼럼보이기 여부를 바꾸려면
드롭다운 화살표를 #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "모두 보기" @@ -2328,7 +2328,7 @@ msgstr "패널 숨기기" msgid "Show hidden navigation tree items." msgstr "숨겨진 탐색 트리의 항목보기." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main panel" @@ -2832,16 +2832,16 @@ msgid "Delete" msgstr "삭제" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2957,7 +2957,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3331,8 +3331,8 @@ msgstr "쿼리가 성공적으로 실행되었습니다." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "이 뷰는 최소 이 숫자 이상의 열을 가지고 있습니다. %s문서%s를 참조해 주십시오." @@ -3368,6 +3368,7 @@ msgstr "선택한 것을:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3383,12 +3384,12 @@ msgstr "변경" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3579,7 +3580,7 @@ msgstr "" "인덱스 %1$s와 %2$s는 동일한 것으로, 두 가지 중 하나는 제거해도 상관없습니다." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "서버" @@ -3594,11 +3595,11 @@ msgstr "뷰" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3614,7 +3615,7 @@ msgstr "구조" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3640,9 +3641,9 @@ msgstr "삽입" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "사용권한" @@ -3702,9 +3703,9 @@ msgid "Central columns" msgstr "중심 열" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "데이터베이스" @@ -3809,7 +3810,7 @@ msgid "Recent" msgstr "최근" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "즐겨찾기 테이블" @@ -3880,7 +3881,7 @@ msgstr "정렬" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4243,20 +4244,21 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"작은 부동소수점 숫자, 허용 가능한 값은 -3.402823466E+38 에서 -1.175494351E-" -"38 까지, 0, 그리고 1.175494351E-38 에서 3.402823466E+38 까지입니다" +"작은 부동소수점 숫자, 허용 가능한 값은 -3.402823466E+38 에서 " +"-1.175494351E-38 까지, 0, 그리고 1.175494351E-38 에서 3.402823466E+38 까지입" +"니다" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"배정밀도 부동소수점 숫자, 허용 가능한 값은 -1.7976931348623157E+308 에서 -" -"2.2250738585072014E-308 까지, 0, 그리고 2.2250738585072014E-308 에서 " +"배정밀도 부동소수점 숫자, 허용 가능한 값은 -1.7976931348623157E+308 에서 " +"-2.2250738585072014E-308 까지, 0, 그리고 2.2250738585072014E-308 에서 " "1.7976931348623157E+308 까지입니다" #: libraries/Types.class.php:336 @@ -4534,7 +4536,7 @@ msgstr "최대: %s%s" msgid "MySQL said: " msgstr "MySQL 메시지: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL 해석" @@ -4546,7 +4548,7 @@ msgstr "SQL 해석 생략" msgid "Without PHP Code" msgstr "PHP 코드 없이 보기" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP 코드 보기" @@ -4659,13 +4661,13 @@ msgstr "설명" msgid "Use this value" msgstr "이 값을 사용합니다" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5059,7 +5061,7 @@ msgid "Set value: %s" msgstr "설정된 값: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "기본값으로 복원" @@ -5172,8 +5174,8 @@ msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." msgstr "" -"[kbd]쿠키[/kbd] 인증을 사용하면서 %sLogin cookie store%s가 0이 아니라면, %" -"sLogin cookie validity%s은 그 값 이하의 값을 가져야합니다." +"[kbd]쿠키[/kbd] 인증을 사용하면서 %sLogin cookie store%s가 0이 아니라면, " +"%sLogin cookie validity%s은 그 값 이하의 값을 가져야합니다." #: libraries/config/ServerConfigChecks.class.php:426 #, php-format @@ -5198,8 +5200,8 @@ msgid "" msgstr "" "[kbd]config[/kbd] 권한 타입 설정에 자동 로그인을 위해 사용자명과 암호를 포함" "했습니다. 이 설정은 실서비스용으로는 권장하지 않습니다. 누군가가 phpMyAdmin" -"이 설치된 주소를 추측하고 접속하여 phpMyAdmin 패널을 건드릴 수 있습니다. %" -"sauthentication type%s을 [kbd]cookie[/kbd]나 [kbd]http[/kbd]로 설정하세요." +"이 설치된 주소를 추측하고 접속하여 phpMyAdmin 패널을 건드릴 수 있습니다. " +"%sauthentication type%s을 [kbd]cookie[/kbd]나 [kbd]http[/kbd]로 설정하세요." #: libraries/config/ServerConfigChecks.class.php:440 #, php-format @@ -5467,23 +5469,35 @@ msgstr "테이블에 들어왔을 때 보여줄 탭." msgid "Default table tab" msgstr "기본 테이블 탭" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "테이블과 열 이름을 백쿼트(`)로 감싸기" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "테이블과 열 이름을 백쿼트(`)로 감싸기" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "테이블 구조 관련 기능을 숨겨 놓을지 말지 여부." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "테이블 구조 관련 기능 숨기기" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "서버 목록을 목록 형태로 출력(드롭 다운 사용 안 함)." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "서버들을 목록으로 표시" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5491,11 +5505,11 @@ msgstr "" "선택한 테이블을 최적화 하거나 복구하는 등의 대규모 유지 보수 작업을 해제합니" "다." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "다중테이블 유지보수기능 해제" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5503,39 +5517,39 @@ msgstr "" "스크립트가 실행 가능한 시간을 초단위로 설정합니다. ([kbd]0[/kbd] 이면 무제" "한)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "최대 실행 시간" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s 구문 추가" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "파일로 저장" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "파일 문자셋" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "형식" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "압축" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5545,60 +5559,60 @@ msgstr "압축" msgid "Put columns names in the first row" msgstr "첫 줄에 열 이름을 넣기" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "열을 시작하는 문자" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "특수 문자 구분에 사용된 문자" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "NULL을 변경" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "열 내의 CRLF 문자를 제거하기" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "열을 종료하는 문자" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "행을 종료하는 문자" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel 버전" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "데이터베이스명 템플릿" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "서버명 템플릿" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "파일명 템플릿" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5607,137 +5621,137 @@ msgstr "파일명 템플릿" msgid "Dump table" msgstr "덤프 테이블" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "테이블 설명 포함하기" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "테이블 설명" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "테이블 설명(Continued)" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "레이블 키" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME 형식" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "관계" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "내보내기 방법" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "서버에 저장" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "기존 파일 덮어쓰기" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "파일명 템플릿을 저장하기" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "테이블과 열 이름을 백쿼트(`)로 감싸기" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL 호환 모드" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE 옵션 :" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "생성/갱신/검사일자" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "지연 삽입 사용" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "외래 키(foreign key) 체크 사용 안함" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "뷰를 테이블로 내보내기" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s 추가" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "BINARY와 BLOB을 16진수로 표현" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "삽입 무시기능 사용" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "자료 삽입시 사용 구문" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "CREATE 질의 최대 길이" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "내보내기 형식" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "내보내기에 트랜잭션 포함" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "세계 표준시(UTC)로 시간 내보내기" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "강제적인 보안 연결로 phpMyAdmin을 사용하기." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "강제적인 SSL 연결" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5745,142 +5759,142 @@ msgstr "" "외래키 드롭다운 박스 항목을 정렬; [kbd]content[/kbd]: 참조 데이터, [kbd]id[/" "kbd]: 키 값." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "외래키 드롭다운 순서(정렬)" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "이보다 적은 항목의 경우 드롭다운이 사용됩니다." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "외래키 제한" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "탐색 모드" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "탐색 모드 사용자화." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "기본옵션 사용자화." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV 데이터" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "개발자" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "phpMyAdmin 개발자를 위한 설정." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "편집 모드" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "편집모드 사용자화." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "기본설정 내보내기" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "기본 내보내기 옵션 사용자화." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "특징" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "일반" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "일반적인 옵션 설정." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "가져오기 기본값" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "기본 가져오기 옵션 사용자화." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "가져오기 / 내보내기" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "가져오기/내보내기 디렉토리와 압축 옵션 설정." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "데이터베이스 표시 옵션." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "내비게이션 패널" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "내비게이션 패널 모양 설정." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "서버" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "서버보기 옵션." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "테이블보기 옵션." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "메인 패널" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "마이크로소프트 오피스" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "기타 핵심기능 설정" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "어디에도 해당되지 않는 설정." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "페이지 제목" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5888,19 +5902,19 @@ msgstr "" "브라우저의 타이틀바 텍스트를 지정합니다. 특수한 값을 얻기 위해 사용가능한 매" "직 문자열들에 대한 내용은 [doc@cfg_TitleTable]문서[/doc]를 참조하십시오." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "질의 창" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "쿼리윈도우 옵션 사용자화" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "보안" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -5908,37 +5922,37 @@ msgstr "" "phpMyAdmin은 유저 인터페이스일 뿐이며, 해당 기능들이 MySQL을 제한하지 않습니" "다." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "기본 설정" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "인증" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "인증 설정." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "서버 환경설정" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "고급 서버 설정 (이 옵션에 대해 자세히 모른다면 변경하지 마세요)." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "서버 연결 파라미터 입력." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "설정 저장공간" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -5947,117 +5961,117 @@ msgstr "" "추가적인 기능을 사용하기 위해 phpMyAdmin 설정 저장공간을 설정하세요. 설명서" "의 [doc@linked-tables]phpMyAdmin configuration storage[/doc] 참고." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "변경 추적하기" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "데이터베이스 변경 추적 기능. phpMyAdmin 설정 저장공간이 필요함." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "내보내기 옵션 사용자화" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "기본 가져오기 사용자화" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "네비게이션 패널 사용자화" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "매인 패널 사용자화" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL 질의문" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL 질의 상자" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "SQL 쿼리 박스에 표시할 링크를 설정." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL 질의문 설정." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "시작" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "시작 페이지 사용자화." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "데이터베이스 구조" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "데이터베이스 구조(테이블 목록)란에서 어떤 정보를 보여줄 지 선택." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "테이블 구조" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "테이블 구조(컬럼 목록) 설정." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "탭" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "탭이 어떻게 동작할지 선택." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "릴레이션 스키마 표시" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "용지 크기" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "텍스트 필드" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "문자열 입력필드 사용자화." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! 텍스트" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "기본옵션 사용자화" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "경고" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "phpMyAdmin로 인해 출력되는 경고의 일부를 끔." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6065,15 +6079,15 @@ msgstr "" "가져오기와 내보내기 작업에 [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] 압" "축 사용." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv 확장 파라미터" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6081,11 +6095,11 @@ msgstr "" "활성화 할 경우, phpMyAdmin은 다중 쿼리 실행 중 하나가 실패하더라도 실행을 계" "속합니다." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "여러 개의 구문 오류 무시" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6095,28 +6109,28 @@ msgstr "" "것을 허용합니다. 이는, 크기가 큰 파일을 임포트할 때 유용합니다. 하지만, 트랜" "잭션이 끊어질 수 있습니다." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "일부분만 가져오기: 인터럽트 허용" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "외래 키(foreign key) 체크 사용 안함" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "INSERT 에러시 종료하지 않기" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "파일 내용으로 테이블 데이터 대체하기" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6124,67 +6138,67 @@ msgstr "" "기본 포멧; 주의: 이 리스트는 선택된 데이터베이스와 테이블에 영향을 받습니다. " "그리고 SQL에서만 가능합니다." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "가져올 파일의 형식" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "LOCAL 키워드 사용" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "첫행에 컬럼명 출력" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "가져오기시 비어있는 행 제외" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "통화 값 가져오기 ($5.00은 5.00으로 가져옴)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "퍼센티지값을 소수로 가져오기 (12.00%를 .12로)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "건너뛰고 시작할 쿼리 수." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "일부분만 가져오기: 쿼리 건너뛰기" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "값이 없는 경우(zero value) AUTO_INCREMENT 사용 금지" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "슬라이더의 초기 상태" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "한 번에 삽입할 행 개수." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "입력된 행 갯수" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "둘러보기 뷰에서 숫자가 아닌 컬럼을 표시할 때 최대 문자 수." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "컬럼 문자 제한" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6194,21 +6208,21 @@ msgstr "" "아웃 시 현재 서버만 적용됩니다. FALSE로 설정하면 여러 서버에 연결되어 있을 " "때 다른 서버에서 로그아웃 하는 것을 잊을 수 있습니다." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "로그아웃시 모든 쿠키 삭제" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "[kbd]쿠키[/kbd] 인증 모드에서 이전 로그인이 다시 불려질지 여부." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "유저명 다시 호출" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6219,68 +6233,68 @@ msgstr "" "0으로, 이는 쿠키가 현재 세션에만 유효하며 브라우저 창을 닫으면 바로 삭제됨을 " "의미합니다. 이는 신뢰되지 않는 환경에서 권장됩니다." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "로그인 쿠키 저장 시간" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "로그인 쿠키의 유효시간을 설정 (초 단위)." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "로그인 쿠키 유효시간" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "LONGTEXT 형식의 컬럼에 대해 두 배 크기의 textarea를 사용." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEXT의 경우 더 큰 textarea를 사용" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "SQL 쿼리 출력시 사용할 최대 문자수." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "최대한 표시될 SQL 길이" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "사용자는 더 높은 값을 설정 할 수 없습니다" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "데이터베이스 목록에 표시할 데이터베이스의 최대 갯수." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "데이터베이스의 최대 갯수" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "탐색 트리 첫번째 단계에서 페이지 당 보여질 아이템 수." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "첫번째 단계에서 최대 아이템 갯수" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "탐색 트리에서 페이지 당 보여질 아이템 수." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "브렌치 당 최대 아이템 갯수" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6288,19 +6302,19 @@ msgstr "" "결과셋을 탐색할 때 보여질 행의 수. 만약 결과셋에 설정값 이상의 행이 있다면, " "\"이전\"과 \"다음 링크가 표시됩니다." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "출력할 최대 행 갯수" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "테이블 목록에 표시할 테이블의 최대 갯수." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "최대 테이블 수" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6308,41 +6322,41 @@ msgstr "" "스크립트가 사용 가능한 메모리 최댓값. 예: [kbd]32M[/kbd] ([kbd]0[/kbd] 이면 " "무제한)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "메모리 제한" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "숨겨진 탐색 트리의 항목보기." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "탐색 패널에 로고를 보여줌." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "로고 출력" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "탐색 패널의 로고가 가리키는 URL." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "로고 링크 URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6350,140 +6364,140 @@ msgstr "" "링크된 페이지를 메인 창([kbd]메인[/kbd])으로 열지, 새 창([kbd]새[/kbd])으로 " "열지 선택." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "로고 링크 타겟" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "네비게이션 패널 맨 위에 서버 선택 메뉴를 표시." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "서버 선택 출력" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "빠른 접근 아이콘 대상" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "빠른 접근 아이콘 대상" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" "필터 박스에 표시할 아이템(테이블, 뷰, 루틴, 이벤트)의 최소 개수를 정의." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "필터 박스에 표시할 최소 아이템 개수" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "데이터베이스 필터 박스에 표시할 최소 데이터베이스 수" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "네비게이션 트리의 그룹 아이템 (아래 정의된 구분자로 구분)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "트리의 그룹 아이템" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "데이터베이스를 서로 다른 트리 레벨로 구분하기 위한 문자열." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "데이터베이스 트리 구분자" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "테이블을 서로 다른 트리 레벨로 구분하기 위한 문자열." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "테이블 트리 구분자" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "테이블 트리의 최대 깊이(depth)" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "마우스 커서 아래의 서버를 강조 표시." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "강조 표시 사용" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "데이터베이스 확장 가능 여부를 비활성화할 것인지." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "테이블 네비게이션 바" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "최근 사용한 테이블 최대 개수; 0이면 이 기능 사용 안 함." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "즐겨찾기 테이블 최대 개수; 0이면 이 기능 사용 안 함." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "최근 사용한 테이블" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "수정, 복사, 삭제 링크가 있음." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "테이블 열 링크를 표시할 위치" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "테이블과 데이터베이스를 정렬할 때 자연 순서(natural order) 사용." -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "자연순서" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "아이콘만 사용, 텍스트만 사용, 둘 다 사용." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "테이블 네비게이션 바" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "HTTP 전송 시 속도에 맞춰 GZip 출력 버퍼를 사용." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip 출력 버퍼" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6491,19 +6505,19 @@ msgstr "" "[kbd]SMART[/kbd] - 예: TIME, DATE, DATETIME 및 TIMESTAMP 형식 컬럼에 대해 내" "림차순 정렬, 다른 형식에 대해 오름차순 정렬." -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "기본 정렬 순서" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "MySQL 데이터베이스에 영속적인 연결 사용." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "영속적인 연결" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6512,21 +6526,21 @@ msgstr "" "데이터베이스 상세 구조 페이지에서, phpMyAdmin 설정 저장용 테이블 중 하나가 없" "을 경우 출력되는 기본 경고를 끄기." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "서버/라이브러리 차이점 경고" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6534,27 +6548,27 @@ msgstr "" "테이블의 컬럼 이름이 MySQL 예약어일 경우 구조 페이지에서 출력되는 기본 경고" "를 끄기." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "MySQL 예약어 경고" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "메뉴탭 보여주기 방식" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "여러 기능 링크를 표시하는 방법" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "BLOB, 바이너리 컬럼 편집 허용 안함." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "바이너리 컬럼 보호" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6564,125 +6578,125 @@ msgstr "" "다). 비활성화 할 경우, 쿼리 기록으로 JS-routines가 사용됩니다 (창을 닫을 경" "우 소멸됩니다)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "영구적 쿼리 기록" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "히스토리에 저장될 쿼리의 갯수." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "쿼리 기록 길이" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "문자열 변환을 위한 함수를 선택하세요." -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "기록 엔진" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "조회한 테이블의 정렬 순서를 기억함." -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "테이블의 정렬 순서 기억하기" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "기본 키 기본 정렬 순서" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" "X번의 셀 마다 헤더를 다시 보여줍니다. [kbd]0[/kbd]이면 이 기능 비활성화." -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "반복 헤더" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "격자판 수정: 트리거 동작" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "연관된 행 표시" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "서버보기 옵션." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "격자판 수정: 수정된 칸들이 한 번에 저장됨" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "내보내기가 저장될 서버상의 디렉토리." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "저장 디렉토리" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "사용하지 않으면 빈칸으로 두세요." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "호스트 인증 지시" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "빈칸으로 두면 기본값이 적용됩니다." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "호스트 인증 규칙" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "암호 없이 로그인 허용" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "루트 사용자 로그인 허용" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "세션 값" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "HTTP 인증시 HTTP 기본 렐름 이름." -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP 렐름" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6691,19 +6705,19 @@ msgstr "" "[a@http://swekey.com]SweKey hardware authentication[/a] 설정 파일 경로 " "(document root에 없습니다; 권장값: /etc/swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey 설정 파일" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "사용할 인증 방법." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "인증 형식" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6711,11 +6725,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]북마크[/a] 지원이 필요 없는 경우 " "비워두세요, 추천: [kbd]pma__bookmark[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "테이블 즐겨찾기" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6723,31 +6737,31 @@ msgstr "" "컬럼의 주석이나 마임타입을 지정하지 않을 경우 비워두세요. 제안값: [kbd]" "pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "컬럼 정보 테이블" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "MySQL 서버와의 압축된 통신." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "연결 압축" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "서버와의 연결 방법, 모르면 [kbd]tcp[/kbd]로 두세요." -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "연결 형식" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "유저 비밀번호 제어" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6755,21 +6769,21 @@ msgstr "" "제한된 권한 설정을 위한 특별한 MySQL 사용자 설정. 추가 정보는 [a@http://wiki." "phpmyadmin.net/pma/controluser]위키[/a]에." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "유저 제어" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "설정 저장을 위한 대체서버; 비워두면 이전에 정의된 서버를 사용." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "호스트 제어" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6778,29 +6792,29 @@ msgstr "" "설정 저장공간을 가지고 있는 서버에 연결할 포트 번호; 빈 값으로 두면 기본값을 " "사용하거나, controlhost와 host가 같은 경우 다른 곳에 정의된 값을 사용합니다." -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "제어 포트" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "정규식에 일치하는 데이터베이스 숨기기 (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA를 사용할 수 없도록 함" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "데이터베이스 숨기기" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6808,38 +6822,38 @@ msgstr "" "SQL 쿼리 내역 저장 기능을 사용하지 않으려면 빈 칸으로 비워두세요, 권장: [kbd]" "pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL 쿼리 히스토리 테이블" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "MySQL 서버가 구동중인 호스트의 이름." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "서버 호스트명" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "로그아웃 URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" "데이터베이스에 저장될 테이블 설정 갯수 제한, 오래된 것은 자동으로 삭제됨." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "저장될 테이블 설정의 최대 갯수" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "QBE가 검색 테이블에 저장되었습니다" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -6850,13 +6864,13 @@ msgid "" msgstr "" "PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns 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__table_coords[/" @@ -6868,15 +6882,15 @@ msgstr "" "PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__table_coords[/" "kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "암호없이 연결 시도." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "암호없이 연결" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -6885,29 +6899,29 @@ msgstr "" "MySQL 와일드카드 문자 (%와 _)를 쓸 수 있습니다. 원래 의미로 쓰기 위해서는 이" "스케이프 하세요([kbd]'my_db'[/kbd]로 하지 말고 [kbd]'my\\_db'[/kbd])." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "리스트에 있는 데이터베이스만 보여주기" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "config 인증을 사용하지 않을 경우 비워두세요." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "config 인증용 패스워드" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF 스키마: 페이지 테이블" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -6917,20 +6931,20 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a]를 참고하세요. 이 기능들을 제공하지 않으려" "면 비워두세요. 권장: [kbd]phpmyadmin[/kbd]." -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "데이터베이스명" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "MySQL 서버의 네트워크 포트. 기본값을 쓰려면 비워두세요." -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "서버 포트" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -6942,11 +6956,11 @@ msgstr "" "데이터베이스에 사용자 설정 스토리지를 두지 않으려면 비워둠, 추천: [kbd]" "pma__userconfig[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" 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: [kbd]" @@ -6958,13 +6972,13 @@ msgstr "" "데이터베이스에 사용자 설정 스토리지를 두지 않으려면 비워둠, 추천: [kbd]" "pma__userconfig[/kbd]" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "즐겨찾기 테이블" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -6976,11 +6990,11 @@ msgstr "" "SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: [kbd]" "pma__tracking[/kbd]" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "연관된 테이블" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -6988,31 +7002,31 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]인증 타입[/a] 예제를 참조" "하세요." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "접속 세션 이름" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "접속 URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "MySQL 서버가 listen하고 있는 소켓으로, 비워두면 기본값으로 설정됩니다." -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "서버 소켓" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "MySQL 서버 연결시 SSL을 활성화합니다." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL 사용" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7020,11 +7034,11 @@ msgstr "" "PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__table_coords[/" "kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7035,11 +7049,11 @@ msgid "" msgstr "" "PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "열 목록 표시" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7051,11 +7065,11 @@ msgstr "" "데이터베이스에 사용자 설정 스토리지를 두지 않으려면 비워둠, 추천: [kbd]" "pma__userconfig[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "UI 설정 테이블" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7063,41 +7077,41 @@ msgstr "" "데이터베이스 생성 시 DROP DATABASE IF EXISTS 구문을 로그 첫 번째 줄에 추가할" "지 여부." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "DROP DATABASE 추가" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "DROP TABLE 추가" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "DROP VIEW 추가" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "문장 추적" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7105,21 +7119,21 @@ msgstr "" "SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: [kbd]" "pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL 쿼리 추적 테이블" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "SQL 쿼리 추적 기능이 테이블과 뷰에 대한 버전을 자동으로 생성할지 여부." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "버전 자동생성" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7127,11 +7141,11 @@ msgstr "" "데이터베이스에 사용자 설정 저장공간을 두지 않으려면 비워둠, 권장: [kbd]" "pma__userconfig[/kbd]." -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "사용자 설정 스토리지 테이블" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7141,11 +7155,11 @@ msgstr "" "하나라도 값을 비워두면 해당 기능을 사용할 수 없음. 권장: [kbd]pma__users[/" "kbd]." -#: libraries/config/messages.inc.php:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "사용자 목록" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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 +7169,11 @@ msgstr "" "도 값을 비워두면 해당 기능을 사용할 수 없음. 권장: [kbd]pma__usergroups[/" "kbd]." -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "사용자 그룹 테이블" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7167,34 +7181,34 @@ msgstr "" "네비게이션 아이템 숨기기/보이기 기능을 사용하지 않으려면 비워두세요. 권장: " "[kbd]pma__navigationhiding[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "숨겨진 네비게이션 아이템 테이블" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "설정 인증용 사용자" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" "이 서버에 대한 알기 쉬운 설명. 호스트 이름을 표시하려면 공백으로 두세요." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "이 서버 이름 보기" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "\"모든 행 보기\" 버튼을 출력할지 여부." -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "모든 행 보기 허용" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7204,125 +7218,125 @@ msgstr "" "다. 왜나하면 패스워드가 설정 파일에 적혀있기 때문입니다. 이 기능은 같은 명령" "어를 직접 실행하는 것을 제한하는 기능은 없습니다." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "비밀번호 변경 폼 보기" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "데이터베이스 생성 폼 보기" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "전체 테이블의 생성 시간을 표시하는 컬럼을 보이기/숨기기." -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "생성 시간 보기" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "모든 테이블에 대해 최종 업데이트 시간을 표시하는 컬럼을 보이기/숨기기." -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "최종 업데이트 시간 표시" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "모든 테이블에 대해 최종 체크 시간을 표시하는 컬럼을 보이기/숨기기." -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "최종 체크 시간 표시" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "편집/삽입 모드에서 타입 필드가 기본적으로 보일지 여부 정의." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "필드 타입 출력" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "편집/삽입 모드에서 함수 필드 보이기." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "함수 필드 보이기" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "힌트 보여주기 여부." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "힌트 보여주기" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 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:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "phpinfo()링크 표시" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "MYSQL 서버 정보 자세하게 표시" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "phpMyAdmin이 생성한 SQL 쿼리를 표시할지 여부를 정의." -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "SQL 쿼리 보기" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "쿼리 전송 후 쿼리 박스가 화면상에 남아있을지 여부." -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "쿼리 박스 유지" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "데이터베이스와 테이블 상태 출력 허용 (사용량 등)." -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "통계보기" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "잠긴 테이블 건너띄기" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Suhosin이 발견될 경우 메인 페이지에 경고가 표시됩니다." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "수호신 경고" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7335,55 +7349,55 @@ msgstr "" "테이블의 컬럼 이름이 MySQL 예약어일 경우 구조 페이지에서 출력되는 기본 경고" "를 끄기." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "로그인 쿠키 유효시간" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "텍스트 편집 필드 칸 수" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "텍스트 편집 필드 줄 수" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "데이터베이스가 선택되었을 때 브라우저 창의 제목." -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "브라우저 윈도우 제목이 아무것도 선택되지 않았을때." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "기본 제목" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "서버가 선택되었을 때의 브라우저 윈도우의 제목." -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 #, 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7391,27 +7405,27 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "IP 허용/거부를 위한 신뢰할만한 프록시 목록" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "가져오기 파일을 업로드할 서버 상의 디렉토리." -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "업로드 디렉토리" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "전체 데이터베이스 내에서의 검색 허용." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "데이터베이스 검색 사용" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7419,26 +7433,26 @@ msgstr "" "꺼져있을 경우, 사용자들은 오른쪽 체크박스에 관계없이 아래의 옵션 중 어느것도 " "설정할 수 없습니다." -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "설정화면에서 개발자 탭을 가능하게 함" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "최신 버전 확인" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "phpMyAdmin 메인 화면에서 최근 버전 확인을 활성화함." -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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,30 +7464,30 @@ msgstr "" "고 프록시를 거쳐야 하는 경우 필요합니다. 양식은 \"hostname:포트 번호\" 입니" "다." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "프록시 주소" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "프록시 사용자명" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "프록시를 이용한 인증에 사용할 암호입니다." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "프록시 암호" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7481,51 +7495,51 @@ msgstr "" "가져오기와 내보내기 작업들에 대해 [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] 압축이 가능하게 함." -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "당신의 도메인의 reCaptcha 서비스를 위한 공개키를 입력하세요." -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "reCaptcha용 공개 키(Public key)" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "당신의 도메인의 reCaptcha 서비스를 위한 개인키를 입력하세요." -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "reCaptcha용 개인 키(Private key)" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "오류 보고를 전송하기 전 물어보기." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "오류보고서 전송" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "제로-설정 모드를 활성화함" @@ -7545,44 +7559,44 @@ msgstr "HTTP 인증" msgid "Signon authentication" msgstr "Signon 인증" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Open Document 스프레드시트 형식" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "사용자 지정" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "데이터베이스 내보내기 옵션" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS엑셀 CSV 데이터" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument 형식" @@ -7796,20 +7810,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "암호 없음" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "암호:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "재입력:" @@ -7945,8 +7959,8 @@ msgstr ", @TABLE@은 테이블 이름이 됨" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "이 값은 %1$sstrftime%2$s에 의해 생성되었습니다. 따라서, 시간 포맷 문자열을 써" "서 변경할 수 있습니다. 또한, 다음과 같은 변환도 일어납니다: %3$s. 그 외의 문" @@ -8477,8 +8491,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "PBXT에 관한 문서나 추가 정보는 %sPrimeBase XT 홈페이지%s에 있습니다." #: libraries/engines/pbxt.lib.php:138 @@ -8937,7 +8951,7 @@ msgstr "로그아웃" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 설명서" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "내비게이션 패널 새로고침" @@ -9595,8 +9609,8 @@ msgstr "%s에 오셨습니다" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파" "일을 생성할 수 있습니다." @@ -9832,7 +9846,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10805,22 +10819,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "사용자명:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "사용자명" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "암호" @@ -10848,10 +10862,10 @@ msgstr "서버 아이디" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "호스트" @@ -10863,38 +10877,38 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "아무데서나" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "로컬" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "현재 호스트" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "아무나" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "호스트 테이블 사용" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -10903,7 +10917,7 @@ msgstr "" "사용됩니다." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "재입력" @@ -11650,7 +11664,7 @@ msgstr "없음" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11718,14 +11732,14 @@ msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "주의: MySQL 권한 이름은 영어로 표시됩니다." @@ -11734,7 +11748,7 @@ msgid "Administration" msgstr "관리" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "전체적 권한" @@ -11743,7 +11757,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" @@ -11760,263 +11774,263 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "로그인 정보" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "텍스트 입력 필드를 사용" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "암호를 변경하지 않음" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 의 암호가 바뀌었습니다." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s의 권한을 제거했습니다." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "사용자 추가" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "유저 전용 데이터베이스" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "데이터베이스 \"%s\"에 대한 모든 권한을 부여." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" 에 접근할 수 있는 사용자들" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "사용자가 추가되었습니다." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "사용자" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "허용" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "사용자가 없습니다." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "누구나" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "데이터베이스 고유" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "Databases" msgid "table-specific" msgstr "데이터베이스" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "권한 수정" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "제거" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "서버 수정" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 #, fuzzy #| msgid "Delete the matches for the %s table?" msgid "… delete the old one from the user tables." msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "... 이전 버전의 모든 활성화된 권한을 취소한 후 이전 버전을 삭제합니다." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "... 사용자 테이블로부터 이전 것을 삭제하고, 권한 정보를 새로고침 합니다." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "로그인 정보 변경 / 사용자 복사" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "새로운 사용자를 동일한 권한으로 생성하고 …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "다음 데이터베이스들에 대한 권한 추가:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "%와 _는 와일드카드입니다. 일반 문자처럼 사용하려면 \\를 앞에 붙이세요." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "다음 테이블에 대한 권한 추가:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "선택한 사용자를 삭제" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "사용자명과 같은 이름의 데이터베이스를 삭제합니다." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "삭제할 사용자를 선택하세요!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "사용권한을 갱신합니다(Reloading the privileges)" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "%s 의 권한을 업데이트했습니다." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s 을 삭제합니다" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "%s에 대한 권한" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "권한 수정:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "사용자 개요" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "주의: phpMyAdmin은 사용자의 권한 정보를 MySQL의 privilege 테이블에서 가져옵니" "다. 만약 수동으로 서버의 권한 정보를 수정하였다면, 서버의 정보와 맞지 않을 " "수 있습니다. 이 경우, %sreload the privileges%s를 먼저 수행하세요." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." @@ -13747,21 +13761,21 @@ msgstr "인덱스 캐시 크기" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "인덱스 종류:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "사용자:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "설명:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -14789,8 +14803,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "전체 쿼리 캐시 크기(Size)에서 남은 쿼리 캐시 메모리의 현재 비율은 %s%% 입니" "다. 80%%보다 높아야 됩니다" @@ -14920,8 +14934,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "정렬 연산의 %s%%가 임시 테이블을 생성합니다. 이 값은 10%% 미만인 것이 좋습니" "다." diff --git a/po/ksh.po b/po/ksh.po index 0eaaad7a53..d5462ee831 100644 --- a/po/ksh.po +++ b/po/ksh.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-10-02 15:09+0200\n" "Last-Translator: Purodha \n" "Language-Team: Colognian \n" +"Language: ksh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ksh\n" "Plural-Forms: nplurals=3; plural=n==0 ? 0 : n==1 ? 1 : 2;\n" "X-Generator: Weblate 1.10-dev\n" @@ -72,7 +72,7 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -96,7 +96,7 @@ msgstr "Kolonn" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -152,8 +152,8 @@ msgid "Links to" msgstr "Verlengk noh" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -182,13 +182,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -211,13 +211,13 @@ msgstr "Nä" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -266,14 +266,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabäll" @@ -286,7 +286,7 @@ msgid "Rows" msgstr "Reije" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Ömfang" @@ -375,9 +375,9 @@ msgstr "" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -568,15 +568,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -609,8 +609,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -682,7 +682,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -703,7 +703,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -778,7 +778,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -1000,7 +1000,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1027,7 +1027,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1056,12 +1056,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1258,7 +1258,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1529,7 +1529,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1740,7 +1740,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1980,7 +1980,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2149,7 +2149,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2243,7 +2243,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2728,16 +2728,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2853,7 +2853,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3233,8 +3233,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3269,6 +3269,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3284,12 +3285,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3476,7 +3477,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3491,11 +3492,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3511,7 +3512,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3537,9 +3538,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3599,9 +3600,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3712,7 +3713,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "" @@ -3783,7 +3784,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4126,14 +4127,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4381,7 +4382,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4393,7 +4394,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4504,13 +4505,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4903,7 +4904,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5257,70 +5258,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5330,60 +5339,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5392,586 +5401,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5979,1043 +5988,1043 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy msgid "Favorites table" msgstr "Ein Tabäll" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7023,52 +7032,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7076,80 +7085,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7169,44 +7178,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7410,20 +7419,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7558,8 +7567,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8055,8 +8064,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8511,7 +8520,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9154,8 +9163,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9378,7 +9387,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10275,22 +10284,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10318,10 +10327,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10333,45 +10342,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11090,7 +11099,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11155,14 +11164,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11171,7 +11180,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11180,7 +11189,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11197,253 +11206,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13038,19 +13047,19 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -13997,8 +14006,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14116,8 +14125,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/ky.po b/po/ky.po index 32389027fc..aab4f8d3b8 100644 --- a/po/ky.po +++ b/po/ky.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-02-03 16:59+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kyrgyz \n" +"Language: ky\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ky\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -71,7 +71,7 @@ msgstr "Жадыбал жөнүндө маалымат:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "Мамыча" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "Шилтемелер" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "Жок" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -268,18 +268,18 @@ msgstr "%1$s берилиштер базасы %2$s на(га) кочурулд msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -"пхпМенинАдминимдин конфигурацияларын сактоо очурулду. Табуу учун эмнеге %" -"shere%s бастыныз." +"пхпМенинАдминимдин конфигурацияларын сактоо очурулду. Табуу учун эмнеге " +"%shere%s бастыныз." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Жадыбал" @@ -292,7 +292,7 @@ msgid "Rows" msgstr "катарлар" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Олчом" @@ -380,9 +380,9 @@ msgstr "Статус" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -576,15 +576,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -617,8 +617,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -693,7 +693,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -714,7 +714,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -789,7 +789,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -871,8 +871,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " msgstr "" -"пхпМенинАдминимдин конфигурацияларын сактоо очурулду. Табуу учун эмнеге %" -"shere%s бастыныз." +"пхпМенинАдминимдин конфигурацияларын сактоо очурулду. Табуу учун эмнеге " +"%shere%s бастыныз." #: index.php:549 msgid "" @@ -1016,7 +1016,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1072,12 +1072,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1274,7 +1274,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1545,7 +1545,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1756,7 +1756,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1996,7 +1996,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2166,7 +2166,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2260,7 +2260,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2747,16 +2747,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2871,7 +2871,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3251,8 +3251,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3287,6 +3287,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3302,12 +3303,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3496,7 +3497,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3511,11 +3512,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3531,7 +3532,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3557,9 +3558,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3621,9 +3622,9 @@ msgid "Central columns" msgstr "\"%s\" мамычанын мааниси" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3731,7 +3732,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "" @@ -3802,7 +3803,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4143,14 +4144,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4398,7 +4399,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4410,7 +4411,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4521,13 +4522,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4922,7 +4923,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5276,70 +5277,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5349,60 +5358,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5411,586 +5420,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5998,1047 +6007,1047 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Central columns table" msgstr "\"%s\" мамычанын мааниси" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Favorites table" msgstr "%s жадыбал" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7046,52 +7055,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7099,80 +7108,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7192,44 +7201,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7433,20 +7442,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7581,8 +7590,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8080,8 +8089,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8538,7 +8547,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9184,8 +9193,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9408,7 +9417,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10319,22 +10328,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10362,10 +10371,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10377,45 +10386,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11132,7 +11141,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11197,14 +11206,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11213,7 +11222,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11222,7 +11231,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11239,253 +11248,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13094,19 +13103,19 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -14066,8 +14075,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14185,8 +14194,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/li.po b/po/li.po index b9b7378f77..21b0cf9e26 100644 --- a/po/li.po +++ b/po/li.po @@ -7,14 +7,14 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-12-21 13:06+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" +"Language: li\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: li\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: changelog.php:36 license.php:28 @@ -67,7 +67,7 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -261,14 +261,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "" @@ -281,7 +281,7 @@ msgid "Rows" msgstr "" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "" @@ -369,9 +369,9 @@ msgstr "" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -562,15 +562,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -601,8 +601,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -674,7 +674,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -695,7 +695,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -768,7 +768,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -988,7 +988,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1015,7 +1015,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1044,12 +1044,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1246,7 +1246,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1517,7 +1517,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1728,7 +1728,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1968,7 +1968,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2137,7 +2137,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2229,7 +2229,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2712,16 +2712,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2836,7 +2836,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3210,8 +3210,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3246,6 +3246,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3261,12 +3262,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3453,7 +3454,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3468,11 +3469,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3488,7 +3489,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3514,9 +3515,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3576,9 +3577,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3686,7 +3687,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "" @@ -3757,7 +3758,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4098,14 +4099,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4353,7 +4354,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4365,7 +4366,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4476,13 +4477,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4869,7 +4870,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5223,70 +5224,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5296,60 +5305,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5358,586 +5367,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5945,1042 +5954,1042 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -6988,52 +6997,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7041,80 +7050,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7134,44 +7143,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7375,20 +7384,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7523,8 +7532,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8014,8 +8023,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8470,7 +8479,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9108,8 +9117,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9332,7 +9341,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10228,22 +10237,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10271,10 +10280,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10286,45 +10295,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11041,7 +11050,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11106,14 +11115,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11122,7 +11131,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11131,7 +11140,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11148,253 +11157,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Gebroeker" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -12987,21 +12996,21 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Gebroeker:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -13947,8 +13956,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14066,8 +14075,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/lt.po b/po/lt.po index cb9265cb4f..71806ce76f 100644 --- a/po/lt.po +++ b/po/lt.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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-02-15 18:57+0200\n" "Last-Translator: Vytautas Motuzas \n" "Language-Team: Lithuanian \n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.2-dev\n" #: changelog.php:36 license.php:28 @@ -70,7 +70,7 @@ msgstr "Lentelės komentarai:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -94,7 +94,7 @@ msgstr "Stulpelis" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -150,8 +150,8 @@ msgid "Links to" msgstr "Sąryšis su" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -180,13 +180,13 @@ msgstr "Pirminis" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -209,13 +209,13 @@ msgstr "Ne" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -264,14 +264,14 @@ msgid "" msgstr "phpMyAdmin nustatymų saugykla išjungta. %sIšsiaiškinkite kodėl%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Lentelė" @@ -284,7 +284,7 @@ msgid "Rows" msgstr "Eilutės" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Dydis" @@ -377,9 +377,9 @@ msgstr "Būsena" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -573,15 +573,15 @@ msgstr "Pridėti geometriją" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -614,11 +614,11 @@ msgstr "užbaigti įterpimus" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %" -"sdokumentaciją%s būdams kaip apeiti šį apribojimą." +"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " +"%sdokumentaciją%s būdams kaip apeiti šį apribojimą." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -708,7 +708,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Atgal" @@ -731,7 +731,7 @@ msgid "General Settings" msgstr "Pagrindiniai nustatymai" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Pakeisti slaptažodį" @@ -820,7 +820,7 @@ msgstr "Versijos informacija:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentacija" @@ -1100,7 +1100,7 @@ msgstr "Pridėti indeksą" msgid "Edit Index" msgstr "Redaguoti indeksą" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Pridėti %s stulpelį(-ius) į indeksą" @@ -1135,7 +1135,7 @@ msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1170,12 +1170,12 @@ msgstr "Tuščias prisijungimo adresas!" msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" @@ -1378,7 +1378,7 @@ msgstr "Prašome pridėti bent vieną kintamąjį į eilę" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1660,7 +1660,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1892,7 +1892,7 @@ msgstr "Rodyti užklausos laukelį" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2170,7 +2170,7 @@ msgstr "Duomenų rodyklės dydis" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignoruoti" @@ -2364,7 +2364,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Rodyti viską" @@ -2472,7 +2472,7 @@ msgstr "Nerodyti indeksų" msgid "Show hidden navigation tree items." msgstr "Logotipą rodyti kairiame rėmelyje" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main frame" @@ -2919,8 +2919,8 @@ msgstr "" #| "Failed formatting string for rule '%s'. PHP threw following error: %s" msgid "Failed formatting string for rule '%s'." msgstr "" -"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: %" -"s" +"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: " +"%s" #: libraries/Advisor.class.php:396 #, php-format @@ -3002,16 +3002,16 @@ msgid "Delete" msgstr "Trinti" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3151,7 +3151,7 @@ msgid "During current session" msgstr "Praleisti šią klaidą" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3589,11 +3589,11 @@ msgstr "Jūsų SQL užklausa sėkmingai įvykdyta" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %" -"sdokumentacijoje%s." +"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " +"%sdokumentacijoje%s." #: libraries/DisplayResults.class.php:4560 #, fuzzy, php-format @@ -3630,6 +3630,7 @@ msgstr "Pasirinktus:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3645,12 +3646,12 @@ msgstr "Redaguoti" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3852,7 +3853,7 @@ msgstr "" "Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Serveris" @@ -3867,11 +3868,11 @@ msgstr "Rodinys" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3887,7 +3888,7 @@ msgstr "Struktūra" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3913,9 +3914,9 @@ msgstr "Įterpti" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegijos" @@ -3977,9 +3978,9 @@ msgid "Central columns" msgstr "Textarea stulpeliai" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Duomenų bazės" @@ -4102,7 +4103,7 @@ msgid "Recent" msgstr "Atstatyti į pradinę būseną" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4184,7 +4185,7 @@ msgstr "Rikiavimas" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4573,14 +4574,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4836,7 +4837,7 @@ msgstr "Didžiausias dydis: %s%s" msgid "MySQL said: " msgstr "MySQL atsakymas: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Paaiškinti SQL" @@ -4848,7 +4849,7 @@ msgstr "Praleisti SQL užklausos aiškinimą" msgid "Without PHP Code" msgstr "be PHP kodo" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP kodas" @@ -4967,13 +4968,13 @@ msgstr "Paaiškinimas" msgid "Use this value" msgstr "Naudokite šią reikšmę" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5400,7 +5401,7 @@ msgid "Set value: %s" msgstr "Nustatyti reikšmę: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Atstatyti numatytąsias reikšmes" @@ -5871,38 +5872,50 @@ msgstr "Kortelė kuri rodoma kai įeinama į lentelę" msgid "Default table tab" msgstr "Numatytoji lentelės kortelė" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Įdėti lentelių ir laukų pavadinimus į kabutes" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Įdėti lentelių ir laukų pavadinimus į kabutes" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Analizuoti lentelės struktūrą" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Analizuoti lentelės struktūrą" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" "Rodyti serverio sąrašą kaip paprastą sąrašą vietoje išskleidžiamojo sąrašo." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Rodyti serverius kaip sąrašą" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Išjungti daug lentelių techninę priežiūrą" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5913,39 +5926,39 @@ msgid "" msgstr "" "Nustatyti, kiek sekundžių scenarijus gali veikti ([kbd]0[/kbd] nėra ribos)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Ilgiausias vykdymo laikas" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Įtraukti %s sakinį" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Išsaugoti į failą" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Failo simbolių koduotė" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formatas" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Glaudinimas" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5955,70 +5968,70 @@ msgstr "Glaudinimas" msgid "Put columns names in the first row" msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" msgstr "Laukų reikšmės apskliaustos su:" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" msgstr "Laukų reikšmės baigiasi simboliu:" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL with:" msgid "Replace NULL with" msgstr "Pakeisti NULL į:" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Pašalinti CRLF simbolius laukeliuose" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Laukai baigiasi" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" msgstr "Eilutės baigiasi simboliu:" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel variantas" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Duomenų bazės vardo šablonas" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Serverio vardo šablonas" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Lentelės vardo šablonas" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6027,316 +6040,316 @@ msgstr "Lentelės vardo šablonas" msgid "Dump table" msgstr "Parodyti lentelę" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Įterpti lentelės antraštę" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Lentelės antraštė" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Pratęsta lentelės antraštė" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Pavadinimo raktas" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME tipas" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Sąryšiai" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Eksporto metodas" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Išsaugoti serveryje" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Perrašyti esamus failus" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Atsiminti failo vardo šabloną" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Įdėti lentelių ir laukų pavadinimus į kabutes" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL suderinamumo režimas" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE nustatymai:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Sukūrimo/atnaujinimo/tikrinimo datos" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Naudoti užlaikytus įterpimus" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Atsisakyti išorinių raktų tikrinimo" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export views as tables" msgstr "Eksportuojamos eilutės iš „%s“ lentelės" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Pridėti %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Naudoti šešioliktainę BLOB'ui" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Naudoti ignoruojamuosius įterpimus" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Tikrinti sintaksę kai įterpiami duomenys" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Didžiausias sukurtos užklausos ilgis" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Eksportavimo tipas" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Naudoti transakciją visam eksportui" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Eksportavimo laikas UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "Priverstinai naudoti saugų prisijungimą kol naudojamasi phpMyAdmin" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Naudoti SSL susijungimą" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Svetimo rakto išskleidimo rikiavimas" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "Išskleidžiamas sąrašas bus naudojamas jei elementų bus mažai" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Svetimų raktų apribojimas" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Naršymo režimas" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "Adaptuoti naršymo režimą" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default options" msgid "Customize default options." msgstr "Pasirinkti numatytuosius nustatymus" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Kūrėjas" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "Nustatymai phpMyAdmin kūrėjams" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Redagavimo režimas" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "Adaptuoti redagavimo režimą" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Eksportuoti numatytąsias reikšmes" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "Pasirinkti numatytuosius eksportavimo nustatymus" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Galimybės" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Bendra" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "Nustatyti keletą dažniausiai naudojamų nustatymų" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importuoti numatytąsias reikšmes" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "Adaptuoti numatytuosius bendrus importavimo nustatymus" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importuoti/eksportuoti" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "Naudoti importavimo ir eksportavimo katalogus ir suspaudimo nustatymus" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "Duomenų bazių rodymo nustatymai" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "Navigacijos rėmelis" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "Adaptuoti navigacijos rėmelio išvaizdą" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Serveriai" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "Serverių rodymo nustatymai" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "Lentelių rodymo nustatymai" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "Pagrindinis rėmelis" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Kiti branduolio nustatymai" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "Kiti nustatymai" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Puslapių pavadinimai" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6345,19 +6358,19 @@ msgstr "" "[doc@cfg_TitleTable]dokumentacija[/doc] magiškiesiems tekstams, kurie bus " "paversti specialiomis reikšmėmis." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Užklausų langas" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Adaptuoti užklausos lango nustatymus" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Saugumas" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6369,25 +6382,25 @@ msgstr "" "Atkreipkite dėmesį, kad phpMyAdmin yra tik vartotojo sąsaja ir jo galimybės " "neriboja MySQL" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Pagrindiniai nustatymai" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Atpažinimas" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "Atpažinimo nustatymai" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Serverio nustatymai" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6399,17 +6412,17 @@ msgstr "" "Išplėstinė serverio konfigūracija, nekeiskite šių nustatymų nebent žinote " "kam jie skirti" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "Įvesti serverio ryšio nustatymus" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Nustatymų saugykla" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -6424,11 +6437,11 @@ msgstr "" "papildomų funkcijų, dokumentacijoje žiūrėkite [doc@linked-tables]phpMyAdmin " "nustatymų saugykla[/doc]" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Pakeitimų sekimas" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6436,127 +6449,127 @@ msgstr "" "Sekti duomenų bazėje atliktus pakeitimus. Reikia phpMyAdmin nustatymų " "saugyklos." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Adaptuoti eksportavimo nustatymus" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Adaptuoti importavimo numatytąsias reikšmes" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "Adaptuoti navigacijos rėmelį" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "Adaptuoti pagrindinė rėmelį" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL užklausos" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL užklausos langelis" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "Adaptuoti nuorodas rodomas SQL užklausos langelyje" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "SQL užklausų nustatymai" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Paleidimas" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "Adaptuoti paleidimo (pagrindinį) puslapį" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "Vartotojo duomenų bazė" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "Vartotojo duomenų bazė" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Kortelės" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Pasirinkti kaip norite, kad veiktų kortelės" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Rodyti sąryšių schema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Lapo dydis" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Teksto laukeliai" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "Adaptuoti teksto įvedimo laukelius" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! tekstas" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Pasirinkti numatytuosius nustatymus" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Perspėjimai" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Išjungti keletą perspėjimų kuriuos rodo phpMyAdmin" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6568,15 +6581,15 @@ msgstr "" "Įjungti [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] glaudinimą importavimo " "ir eksportavimo nustatymams" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Papildomas parametras iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6588,11 +6601,11 @@ msgstr "" "Jeigu įjungta, phpMyAdmin tęsia įvairių-sakinių užklausų paleidinėjimą netgi " "jei viena užklausa nepavyksta" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignoruoti įvairias sakinių klaidas" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6602,28 +6615,28 @@ msgstr "" "vykdymo laiko ribos. Gali būti naudinga importuojant didelius failus, tačiau " "gali sugadinti tranzakcijas." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Dalinis importas: leisti pertrauktis" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Atsisakyti išorinių raktų tikrinimo" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Nenutraukti įvykus INSERT klaidai" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Pakeisti lentelės turinį failo duomenimis" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6635,62 +6648,62 @@ msgstr "" "Numatytasis formatas; žinokite, kad šis sąrašas priklauso nuo vietos " "(duomenų bazė, lentelė) ir tik SQL visada pasiekiamas" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Įkelto failo formatas" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Naudoti LOCAL raktažodį" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Stulpelių pavadinimai pirmoje eilutėje" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Neimportuoti tuščių eilučių" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importuoti valiutas ($5.00 kaip 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importuoti procentus kaip dešimtainius (12.00% kaip .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "Praleisti užklausų skaičių nuo pradžios" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Dalinis importas: praleisti užklausas" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nenaudoti AUTO_INCREMENT nulinėms reikšmėms" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "Kiek eilučių gali būti įdėta per vieną kartą" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Įkeltų eilučių skaičius" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "" #| "Maximum number of characters shown in any non-numeric column on browse " @@ -6699,11 +6712,11 @@ msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "Didžiausias rodomas simbolių kiekis ne skaitiniuose stulpeliuose" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Apriboti stulpelių simbolius" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6714,11 +6727,11 @@ msgstr "" "lengva pamiršti atsijungi iš kitų skirtingų serverių (prie kurių esate " "prisijungę)." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Ištrinti visus slapukus atsijungiant" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " @@ -6730,11 +6743,11 @@ msgstr "" "Slapta frazė naudojama šifruojant slapukus [kbd]slapukų[/kbd] " "identifikacijoje" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6746,79 +6759,79 @@ msgstr "" "egzistuojančioje sesijoje ir bus ištrinta naršyklės uždarymo momentu. " "Rekomenduojama nepatikimose aplinkose." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Prisijungimo slapuko saugojimas" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "Nustatyti prisijungimo slapuko galiojimo laiką (sekundžių tikslumu)" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Prisijungimo slapuko galiojimas" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "Padvigubinti LONGTEXT laukelių dydį" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Didesnis textarea LONGTEXT'ui" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" "Didžiausias leistinas simbolių kiekis naudojamas SQL užklausai parodyti" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Maksimalus SQL rodymo ilgis" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Naudotojai negali nustatyti didesnės reikšmės" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Didžiausias duomenų bazių skaičius" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for input field" msgid "Maximum items on first level" msgstr "Didžiausias dydis įvedimo laukeliui" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6827,21 +6840,21 @@ msgstr "" "rinkinys turi daugiau eilučių, „Ankstesnis“ ir „Kitas“ saito nuorodos bus " "parodytos." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Maksimalus skaičius eilučių rodymui" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Didžiausias skaičius lentelių" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6853,45 +6866,45 @@ msgstr "" "Skaičius leidžiamų paskirti baitų scenarijui (skriptui), pvz., [kbd]32M[/" "kbd] ([kbd]0[/kbd] neriboja)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Atminties apribojimai" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "Logotipą rodyti kairiame rėmelyje" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "Logotipą rodyti kairiame rėmelyje" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Rodyti logotipą" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to." msgstr "Adresas kur nuves logotipas esantis navigacijos rėmelyje" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Logotipo saito adresas" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -6903,29 +6916,29 @@ msgstr "" "Atidaryti susijusį puslapį pagrindiniame lange ([kbd]pagrindiniame[/kbd]) " "arba ([kbd]naujame[/kbd])" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Logotipas nukreipia į nuorodą" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "Rodyti serverio pasirinkimus viršuje kairiame rėmelyje" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Rodyti serverių pasirinkimą" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "" @@ -6933,19 +6946,19 @@ msgid "" "display a filter box." msgstr "Minimalus skaičius lentelių, kad rodyti lentelių filtro dėžutę" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of items to display the filter box" msgstr "Minimalus skaičius lentelių, kad rodyti lentelių filtro dėžutę" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of databases to display the database filter box" msgstr "Minimalus skaičius lentelių, kad rodyti lentelių filtro dėžutę" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " @@ -6956,117 +6969,117 @@ msgid "" msgstr "" "Tik maža versija; rodyti duomenų bazės medį (skyriklis nustatomas žemiau)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "Simboliai kurie atskiria duomenų bazes į atskiras medžio šakas" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Duomenų bazės medžio skyriklis" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "Simboliai kurie atskiria lenteles į skirtingas medžio šakas" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Lentelės medžio skyriklis" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maksimalus lentelių medžio gylis" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "Paryškinti serverį užvedus pelės žymekliu" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Įjungti paryškinimą" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Iconic navigation bar" msgid "Enable navigation tree expansion" msgstr "Piktograminė navigacijos juostelė" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Didžiausias skaičius paskiausiai naudotų lentelių; nustatyti 0, kad išjungti" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "Didžiausias skaičius paskiausiai naudotų lentelių; nustatyti 0, kad išjungti" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Paskiausiai naudotos lentelės" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Kur parodyti lentelės eilučių nuorodas" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Natūrali tvarka" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, 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:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Iconic navigation bar" msgid "Table navigation bar" msgstr "Piktograminė navigacijos juostelė" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip išvedimo buferis" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -7078,21 +7091,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Numatytoji rikiavimo tvarka" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, 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:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Ilgalaikiai sujungimai" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7107,11 +7120,11 @@ msgstr "" "puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų " "lentelių" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7125,11 +7138,11 @@ msgstr "" "puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų " "lentelių" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7143,31 +7156,31 @@ msgstr "" "puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų " "lentelių" -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 #, 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:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Apsaugoti dvejetainius stulpelius" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -7177,21 +7190,21 @@ msgstr "" "(reikalinga phpMyAdmin nustatymų saugykla). Jeigu išjungta, naudoja " "JavaScript užklausų istorijai rodyti (prarandama uždarius langą)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Nuolatinė užklausų istorija" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, 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:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Užklausų istorijos ilgis" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, fuzzy #| msgid "Select which functions will be used for character set conversion" msgid "Select which functions will be used for character set conversion." @@ -7199,31 +7212,31 @@ msgstr "" "Pasirinkti kokios funkcijos bus naudojamos ženklų rinkinio (koduotės) " "konvertavimui" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Įrašymo varikliukas" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Įsiminti lentelės rūšiavimą" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Numatytoji rikiavimo tvarka" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -7231,112 +7244,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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Pakartoti antraštes" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Ryšių rodymo stulpelis" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "Serverių rodymo nustatymai" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 #, 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:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Išsaugoti katalogą" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "Palikite tuščią, jei nenaudojamas" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, 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:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Leisti prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Leisti prisijungti kaip root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Sesijos reikšmė" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication settings" msgid "Authentication method to use." msgstr "Atpažinimo nustatymai" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Autentifikacijos tipas" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7348,11 +7361,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Pažymėti lentelę" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7364,36 +7377,36 @@ msgstr "" "Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Stulpelio informacinė lentelė" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Naudoti suspaustą susijungimą" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Susijungimo tipas" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Kontroliuoti naudotojų slaptažodį" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7406,42 +7419,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Kontroliuoti naudotoją" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Control user" msgid "Control host" msgstr "Kontroliuoti naudotoją" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control user" msgid "Control port" msgstr "Kontroliuoti naudotoją" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, 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:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7449,15 +7462,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Neleisti matyti INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Slėpti duomenų bazes" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7469,41 +7482,41 @@ msgstr "" "Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: [kbd]pma_history" "[/kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL užklausų žurnalo lentelė" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, 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:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Serverio adresas" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Atsijungimo nuoroda" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Didžiausias skaičius išsaugomų lentelės nustatymų" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, 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:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7514,13 +7527,13 @@ msgstr "" "Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "Textarea stulpeliai" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7532,17 +7545,17 @@ msgstr "" "Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, 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:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -7562,21 +7575,21 @@ msgstr "" "ir pabaigoje nurodykite [kbd]*[/kbd], kad parodytumėte likusias abėcėlės " "tvarka." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Rodyti tik šias duomenų bazes" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7586,11 +7599,11 @@ msgstr "" "Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF schema: puslapių lentelė" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7605,12 +7618,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Duomenų bazės vardas" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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." @@ -7618,11 +7631,11 @@ msgstr "" "Jungtis per kurią MySQL serveris laukia atsakymo, palikite tuščią numatytam " "nustatymui" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Serverio jungtis" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" @@ -7633,11 +7646,11 @@ msgstr "" "Palikite tuščią jeigu nenorite „įkyrių“ neseniai naudotų lentelių tarp " "seansų, siūlome: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Paskiausiai naudota lentelė" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" @@ -7648,13 +7661,13 @@ 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 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Kintamieji" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7666,11 +7679,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Sąryšių lentelė" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7682,35 +7695,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:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Prisijungimo sesijos vardas" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Prisijungimo adresas" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Serverio prievadas (socket)" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Naudoti SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7722,13 +7735,13 @@ msgstr "" "Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, 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:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7740,11 +7753,11 @@ 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 msgid "Display columns table" msgstr "Rodyti lentelės stulpelius" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" @@ -7754,49 +7767,49 @@ msgstr "" "Jei tuščias nebus „įkyrių“ UI nustatymų tarp seansų, siūlome: [kbd]" "pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Naudotojo sąsajos nustatymų lentelė" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Pridėti DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Pridėti DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Pridėti DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Sekamos užklausos" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7808,21 +7821,21 @@ msgstr "" "Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: [kbd]pma_history" "[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL užklausų sekimo lentelė" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Automatiškai sukurti versijas" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" @@ -7833,37 +7846,37 @@ msgstr "" "Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Naudoti lenteles" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Naudoti Host lentelę" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" @@ -7874,110 +7887,110 @@ msgstr "" "Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Leisti rodyti visas eilutes (įrašus)" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Rodyti slaptažodžio keitimo formą" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Rodyti duomenų bazės sukūrimo formą" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show more actions" msgid "Show Creation timestamp" msgstr "Rodyti daugiau veiksmų" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy #| msgid "Show master status" msgid "Show Last check timestamp" msgstr "Rodyti pagrindinio serverio būklę" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Rodyti laukelių tipus" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Rodyti funkcijų laukelius" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, 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:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show indexes" msgid "Show hint" msgstr "Rodyti indeksus" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7989,15 +8002,15 @@ msgstr "" "Rodyti nuorodą į [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "išvedimą" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Rodyti phpinfo() nuorodą" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Rodyti išsamią MySQL serverio informaciją" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -8006,22 +8019,22 @@ msgid "" msgstr "" "Nustato kada turi būti rodomos SQL užklausos kurias sugeneravo phpMyAdmin" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Rodyti SQL užklausas" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" msgstr "Slėpti užklausos laukelį" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, fuzzy #| msgid "Allow to display database and table statistics (eg. space usage)" msgid "Allow to display database and table statistics (eg. space usage)." @@ -8029,30 +8042,30 @@ msgstr "" "Leisti rodyti duomenų bazių ir lentelių statistiką (pavyzdžiui vietos " "naudojimą)" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Rodyti statistika" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Praleisti užrakintas lenteles" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 #, fuzzy #| msgid "A warning is displayed on the main page if Suhosin is detected" msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Įspėjimas rodomas pagrindiniame puslapyje jeigu Suhosin yra aptinkamas" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin įspėjimas" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -8067,61 +8080,61 @@ msgstr "" "puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų " "lentelių" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Prisijungimo slapuko galiojimas" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Textarea stulpeliai" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Textarea eilutės" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 #, 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:784 +#: libraries/config/messages.inc.php:786 #, 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Numatytasis pavadinimas" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 #, 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:788 +#: libraries/config/messages.inc.php:790 #, 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -8129,31 +8142,31 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Sąrašas patikimų proxy serverių IP leidimui/atmetimui" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Įkelties katalogas" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, 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:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Naudoti duomenų bazės paiešką" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 #, fuzzy #| msgid "" #| "When disabled, users cannot set any of the options below, regardless of " @@ -8165,29 +8178,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Patikrinti ar naujausia versija" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 #, 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -8195,34 +8208,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "Vartotojo vardas" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Slaptažodis" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -8234,55 +8247,55 @@ msgstr "" "Įjungia [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] glaudinimą " "importo ir eksporto operacijoms" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "Serverio jungtis" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Įvykdytos užklausos" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8304,46 +8317,46 @@ msgstr "HTTP autentifikacija" msgid "Signon authentication" msgstr "Prisijungimo tapatybės nustatymas" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV naudojant LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Open Document skaičiuoklė" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Greitas" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Pritaikytas" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Duomenų bazės eksportavimo nustatymai" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV formatas MS Excel programai" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8582,20 +8595,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Nėra slaptažodžio" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Slaptažodis:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8736,8 +8749,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite " "keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " @@ -9279,8 +9292,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9771,7 +9784,7 @@ msgstr "Atsijungti" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -10455,8 +10468,8 @@ msgstr "Jūs naudojate %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." @@ -10700,7 +10713,7 @@ msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11801,7 +11814,7 @@ msgstr "" "skiltį:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11809,16 +11822,16 @@ msgstr "Naudotojo vardas" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Naudotojo vardas" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Slaptažodis" @@ -11848,10 +11861,10 @@ msgstr "Serverio ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Darbinė stotis" @@ -11863,47 +11876,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Bet kurį prisijungimo adresą" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokali darbinė stotis" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Dabartinis serveris" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Bet kurį vartotoją" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Naudokite teksto įvedimo lauką" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Naudoti Host lentelę" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Įveskite dar kartą" @@ -12693,7 +12706,7 @@ msgstr "Nėra" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12764,14 +12777,14 @@ msgstr "Riboti skaičių lygiagrečių prisijungimų kurį naudotojai gali turė #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12782,7 +12795,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globalios teisės" @@ -12793,7 +12806,7 @@ msgid "Global" msgstr "globalus" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Specifinės duomenų bazių privilegijos" @@ -12812,147 +12825,147 @@ msgstr "" "Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant " "privilegijų lentelės." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Prisijungimo informacija" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Nekeisti slaptažodžio" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jūs panaikinote privilegijas %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Pridėti naudotoją" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Vartotojo duomenų bazė" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "Sukurti duomenų bazę su tokiu pat vardu ir suteikti jai visas privilegijas." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Suteikti visas privilegijas duomenų bazei „%s“." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Vartotojai turintys priėjimą prie „%s“" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Naudotojas buvo pridėtas." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Naudotojas" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Suteikti" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Nerasta jokių naudotojų." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Bet kurį(ią)" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globalus" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "tam tikros duomenų bazės" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "pakaitos simbolis" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "tam tikros duomenų bazės" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Redaguoti privilegijas" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Panaikinti" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Redaguoti serverį" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… palikti seną vartotoją." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… pašalinti seną vartotoją iš vartotojų lentelės." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12960,126 +12973,126 @@ msgstr "" "… pašalinti seną vartotoją iš vartotojų lentelės ir po to perkrauti " "privilegijas." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Sukurti privilegijas šiai duomenų bazei" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "Norėdami naudoti _ ir % kaip simbolius, prieš juos prirašykite \\." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Sukurti privilegijas šiai lentelei" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Pašalinti pažymėtus vartotojus" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" "Pašalinti duomenų bazes, turinčias tokius pačius pavadinimus kaip ir " "vartotojai." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Nepasirinta vartotojų trynimui!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Perkraunamos privilegijos" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs pakeitėte privilegijas %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Šaliname: %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Vartotojas %s jau yra!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegijos" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Redaguoti privilegijas" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Naudotojų apžvalga" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų " "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." @@ -14854,23 +14867,23 @@ msgstr "Indekso podėlio (cache) dydis" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indekso tipas :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Naudotojas" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Komentaras" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15933,8 +15946,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -16067,8 +16080,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/lv.po b/po/lv.po index 687cee9826..0518c89ec6 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-02-16 08:32+0200\n" "Last-Translator: Ukko \n" "Language-Team: Latvian \n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" "X-Generator: Weblate 2.2-dev\n" @@ -68,7 +68,7 @@ msgstr "Tabulas komentāri:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "Lauks" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "Linki uz" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "Primārā" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "Nē" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -268,14 +268,14 @@ msgstr "" "kāpēc, klikškiniet %sšeit%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabula" @@ -288,7 +288,7 @@ msgid "Rows" msgstr "Rindas" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Izmērs" @@ -381,9 +381,9 @@ msgstr "Statuss" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -581,15 +581,15 @@ msgstr "Pievienot jaunu ģeometriju" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -622,11 +622,11 @@ msgstr "Nepabeigti parametri" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Visticamāk Jūs mēģinājāt augšupielādēt failu, kas ir par lielu. Skaties %" -"sdocumentation%s, lai atrastu risinājumu šai problēmai." +"Visticamāk Jūs mēģinājāt augšupielādēt failu, kas ir par lielu. Skaties " +"%sdocumentation%s, lai atrastu risinājumu šai problēmai." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -707,7 +707,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Atpakaļ" @@ -730,7 +730,7 @@ msgid "General Settings" msgstr "Galvenie uzstādījumi" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Mainīt paroli" @@ -805,7 +805,7 @@ msgstr "Versijas informācija:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentācija" @@ -1067,7 +1067,7 @@ msgstr "Pievienot indeksu" msgid "Edit Index" msgstr "Labot indeksu" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Pievienot %s lauku(s) indeksam" @@ -1104,7 +1104,7 @@ msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1139,12 +1139,12 @@ msgstr "Hosts nav norādīts!" msgid "The user name is empty!" msgstr "Lietotāja vārds nav norādīts!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Parole nav norādīta!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" @@ -1343,7 +1343,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1621,7 +1621,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1836,7 +1836,7 @@ msgstr "Rādīt pieprasījumu logu" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2110,7 +2110,7 @@ msgstr "Satura rādītājs" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorēt" @@ -2301,7 +2301,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Rādīt visu" @@ -2412,7 +2412,7 @@ msgstr "Pievienot jaunu lauku" msgid "Show hidden navigation tree items." msgstr "Rādīt režģi" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy msgid "Link with main panel" @@ -2972,16 +2972,16 @@ msgid "Delete" msgstr "Dzēst" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3117,7 +3117,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3570,8 +3570,8 @@ msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3609,6 +3609,7 @@ msgstr "Ar iezīmēto:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3624,12 +3625,12 @@ msgstr "Labot" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3828,7 +3829,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Serveris" @@ -3843,11 +3844,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3863,7 +3864,7 @@ msgstr "Struktūra" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3889,9 +3890,9 @@ msgstr "Pievienot" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilēģijas" @@ -3953,9 +3954,9 @@ msgid "Central columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Datubāzes" @@ -4083,7 +4084,7 @@ msgid "Recent" msgstr "Atcelt" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4164,7 +4165,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4541,14 +4542,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4804,7 +4805,7 @@ msgstr "Maksimālais izmērs: %s%s" msgid "MySQL said: " msgstr "MySQL teica: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Izskaidrot SQL" @@ -4816,7 +4817,7 @@ msgstr "Neizskaidrot SQL" msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Izveidot PHP kodu" @@ -4936,13 +4937,13 @@ msgstr "Apraksts" msgid "Use this value" msgstr "Lietot šo vērtību" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5371,7 +5372,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5731,78 +5732,90 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Lietot apostrofa simbolu [`] tabulu un lauku nosaukumiem" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Lietot apostrofa simbolu [`] tabulu un lauku nosaukumiem" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Ieteikt tabulas sruktūru" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Ieteikt tabulas sruktūru" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Tabulas apkalpošana" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Parametrs" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Saglabāt kā failu" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "Tabulas kodējums:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formats" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5814,75 +5827,75 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Likt kolonnu nosaukumus pirmajā rindā" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Lauki iekļauti iekš" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Glābjoša (escape) rakstzīme ir" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "Aizvietot NULL ar" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Rindas atdalītas ar" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Rindas atdalītas ar" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel redakcija" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 #, fuzzy msgid "Database name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 #, fuzzy msgid "Server name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 #, fuzzy msgid "Table name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5893,641 +5906,641 @@ msgstr "Faila nosaukuma šablons" msgid "Dump table" msgstr "%s tabula(s)" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Iekļaut tabulas virsrakstu" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Tabulas virsraksts" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Tabulas virsraksta turpinājums" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Etiķetes atslēga" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME tips" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relācijas" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Eksporta veids" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Pārrakstīt eksistējošos failus" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 #, fuzzy msgid "Remember file name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Lietot apostrofa simbolu [`] tabulu un lauku nosaukumiem" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Izveidošanas/Atjaunošanas/Piekļuves datumi" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Lietot aizturētos INSERT" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Nepārbaudīt ārējās atslēgas" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Izveidot jaunu tabulu datubāzē %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Lietot IGNORE INSERTS" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "Eksporta veids" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Iekļaut eksportu transakcijā" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 #, fuzzy msgid "Export time in UTC" msgstr "Eksporta veids" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy msgid "Customize default options." msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV dati" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy msgid "Customize edit mode." msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 -#, fuzzy -msgid "Customize default export options." -msgstr "Datubāzu eksporta opcijas" - -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 -#: setup/frames/menu.inc.php:22 -msgid "Features" -msgstr "" - #: libraries/config/messages.inc.php:226 #, fuzzy +msgid "Customize default export options." +msgstr "Datubāzu eksporta opcijas" + +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 +#: setup/frames/menu.inc.php:22 +msgid "Features" +msgstr "" + +#: libraries/config/messages.inc.php:228 +#, fuzzy msgid "General" msgstr "Uzģenerēja" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 #, fuzzy msgid "Import defaults" msgstr "Importēt failus" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "Customize default common import options." msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy msgid "Customize appearance of the navigation panel." msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 #, fuzzy msgid "Servers" msgstr "Serveris" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Add new field" msgid "Main panel" msgstr "Pievienot jaunu lauku" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Lapas numurs:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentācija" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Documentation" msgid "Authentication settings." msgstr "Dokumentācija" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "MySQL connection collation" msgid "Enter server connection parameters." msgstr "MySQL konekcijas kārtošana" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Customize export options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy msgid "Customize navigation panel" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy msgid "Customize main panel" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "Statuss" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy msgid "Customize startup page." msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "Datubāzes" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "Datubāzes" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "Tabula" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relāciju shēma" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Papīra izmērs" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Lietot teksta lauku" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy msgid "Customize text input fields." msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Customize default options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Nepārbaudīt ārējās atslēgas" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Likt kolonnu nosaukumus pirmajā rindā" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6535,1113 +6548,1113 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy msgid "Maximum items on first level" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Memory limit" msgstr "Resursu ierobežojumi" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Rādīt režģi" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy msgid "Show logo in navigation panel." msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Tabulas virsraksts" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analizēt tabulu" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Mainīt datu kārtošanas laukus" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Tabulas virsraksts" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Pārsaukt tabulu uz" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational schema" msgid "Relational display" msgstr "Relāciju shēma" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Sesijas vērtība" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Documentation" msgid "Authentication method to use." msgstr "Dokumentācija" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 #, fuzzy msgid "Connection type" msgstr "Konekcijas" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Jebkurš hosts" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Jebkurš hosts" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "Nav datubāzu" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "Servera izvēle" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "Nemainīt paroli" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Datubāze" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "Servera ID" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizēt tabulu" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Mainīgie" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Restaurēt tabulu" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "Servera izvēle" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Rādu kolonnu komentārus" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentēt tabulu" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Parametrs" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy msgid "Automatically create versions" msgstr "Servera versija" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Lietot tabulas" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Lietot hostu tabulu" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Parādīt PHP informāciju" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy msgid "Show field types" msgstr "Rādīt tabulas" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Rādīt režģi" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "Rādīt pilnos vaicājumus" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 #, fuzzy msgid "Show statistics" msgstr "Rindas statistika" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Noklusēts" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7649,52 +7662,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7702,85 +7715,85 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Lietotājvārds:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Parole" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "Servera ID" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Modifications have been saved" msgid "Enable Zero Configuration mode" @@ -7802,46 +7815,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "Dokumentācija" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV dati MS Excel formātā" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -8092,20 +8105,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Nav paroles" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Parole:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8271,8 +8284,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8794,8 +8807,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9281,7 +9294,7 @@ msgstr "Iziet" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentācija" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "Datubāzu eksporta opcijas" @@ -9973,8 +9986,8 @@ msgstr "Laipni lūgti %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10242,7 +10255,7 @@ msgstr "Likt kolonnu nosaukumus pirmajā rindā" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11281,7 +11294,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11289,16 +11302,16 @@ msgstr "Lietotājvārds" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Lietotājvārds" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Parole" @@ -11327,10 +11340,10 @@ msgstr "Servera ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Hosts" @@ -11342,47 +11355,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Jebkurš hosts" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokāls" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Šis hosts" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Jebkurš lietotājs" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Lietot teksta lauku" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Lietot hostu tabulu" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Atkārtojiet" @@ -12186,7 +12199,7 @@ msgstr "Nav" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12259,14 +12272,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12277,7 +12290,7 @@ msgid "Administration" msgstr "Administrācija" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globālās privilēģijas" @@ -12288,7 +12301,7 @@ msgid "Global" msgstr "globāls" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" @@ -12307,148 +12320,148 @@ msgstr "" "Ļauj pievienot lietotājus un privilēģijas bez privilēģiju tabulu " "pārlādēšanas." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Piekļuves informācija" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Lietot teksta lauku" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Nemainīt paroli" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Lietotāja %s parole tika veiksmīgi mainīta." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Jūs atņēmāt privilēgijas lietotājam %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Pievienot lietotāju" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Pārbaudīt privilēģijas uz datubāzi \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Lietotāji, kam ir pieja datubāzei \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy msgid "User has been added." msgstr "Lauks %s tika izdzēsts" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Lietotājs" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Piešķirt" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Lietotāji netika atrasti." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Jebkurš" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globāls" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "datubāzei specifisks" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "aizstājējzīme" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "datubāzei specifisks" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Mainīt privilēģijas" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Atsaukt" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… paturēt veco lietotāju." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… dzēst veco lietotāju no lietotāju tabulas." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " "viņu." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12456,127 +12469,127 @@ msgstr "" "… dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Pievienot privilēģijas uz sekojošo datubāzi" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Aizstājējzīmes _ un % jāaizsargā ar \\ priekšā, lai izmantotu tās burtiski." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Dzēst izvēlētos lietotājus" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Pārlādējam privilēģijas" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs modificējāt privilēģijas objektam %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Dzēšam %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilēģijas" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Mainīt privilēģijas" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Lietotāju pārskats" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL " "privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko " -"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %" -"spārlādēt privilēģijas%s pirms Jūs turpināt." +"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " +"%spārlādēt privilēģijas%s pirms Jūs turpināt." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." @@ -14377,22 +14390,22 @@ msgstr "Indeksa nosaukums :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indeksa tips :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Lietotājs:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy msgid "Comment:" msgstr "Komentāri" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15425,8 +15438,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15554,8 +15567,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -16502,8 +16515,8 @@ msgstr "" #~ "%s." #~ msgstr "" #~ "Nevar inicializēt SQL pārbaudītāju. Lūdzu pārbaudiet, vai esat " -#~ "uzinstalējuši nepieciešamos PHP paplašinājumus, kā aprakstīts %" -#~ "sdokumentācijā%s." +#~ "uzinstalējuši nepieciešamos PHP paplašinājumus, kā aprakstīts " +#~ "%sdokumentācijā%s." #, fuzzy #~| msgid "Copy" diff --git a/po/mk.po b/po/mk.po index 4ca59d6c51..420a12a48c 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-05 10:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Macedonian \n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Weblate 2.0-dev\n" @@ -68,7 +68,7 @@ msgstr "Коментар на табелата" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -94,7 +94,7 @@ msgstr "Имиња на колони" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -150,8 +150,8 @@ msgid "Links to" msgstr "Врски кон" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -180,13 +180,13 @@ msgstr "Примарен" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -209,13 +209,13 @@ msgstr "Не" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -271,14 +271,14 @@ msgstr "" "дознаете зошто, кликнете %sовде%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Табела" @@ -291,7 +291,7 @@ msgid "Rows" msgstr "Записи" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Големина" @@ -393,9 +393,9 @@ msgstr "Статус" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -608,15 +608,15 @@ msgstr "Додади нов корисник" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -651,8 +651,8 @@ msgstr "Комплетен INSERT (со имиња на полињата)" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -726,7 +726,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Назад" @@ -750,7 +750,7 @@ msgid "General Settings" msgstr "Општи особини на релациите" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Промена на лозинка" @@ -843,7 +843,7 @@ msgstr "Информации за верзијата" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Документација" @@ -1123,7 +1123,7 @@ msgstr "Додади ново поле" msgid "Edit Index" msgstr "Ажурирање на следниот запис" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1161,7 +1161,7 @@ msgstr "Морате да изберете барем една колона за #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1198,12 +1198,12 @@ msgstr "Името на host-от е празно!" msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" @@ -1422,7 +1422,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1728,7 +1728,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1971,7 +1971,7 @@ msgstr "SQL упит" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2245,7 +2245,7 @@ msgstr "Големина на покажувачите на податоци" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Игнорирај" @@ -2433,7 +2433,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "прикажи ги сите" @@ -2543,7 +2543,7 @@ msgstr "Додади ново поле" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежа" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy msgid "Link with main panel" @@ -3104,16 +3104,16 @@ msgid "Delete" msgstr "избриши" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3248,7 +3248,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3705,8 +3705,8 @@ msgstr "Вашиот SQL упит успешно е извршен" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3744,6 +3744,7 @@ msgstr "Обележаното:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3759,12 +3760,12 @@ msgstr "Промени" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3966,7 +3967,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Сервер" @@ -3981,11 +3982,11 @@ msgstr "Поглед" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -4001,7 +4002,7 @@ msgstr "Структура" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4027,9 +4028,9 @@ msgstr "Нов запис" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Привилегии" @@ -4091,9 +4092,9 @@ msgid "Central columns" msgstr "Додади/избриши колона" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "База на податоци" @@ -4221,7 +4222,7 @@ msgid "Recent" msgstr "Поништи" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4302,7 +4303,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4679,14 +4680,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4942,7 +4943,7 @@ msgstr "Максимална големина: %s%s" msgid "MySQL said: " msgstr "MySQL порака: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Објасни SQL" @@ -4954,7 +4955,7 @@ msgstr "Прескокни ги објаснувањата на SQL-от" msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Направи PHP код" @@ -5074,13 +5075,13 @@ msgstr "Опис" msgid "Use this value" msgstr "Користи ја оваа вредност" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5508,7 +5509,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5869,78 +5870,90 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Името на полето стави го во '" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Името на полето стави го во '" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Предложи структура на табелата" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Предложи структура на табелата" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Можете да извршите:" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Име" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Сочувај како податотека" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "Кодна страна на податотеката:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Компресија" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5952,75 +5965,75 @@ msgstr "Компресија" msgid "Put columns names in the first row" msgstr "Стави ги имињата на полињата во првата редица" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Полињата се раздвоени со" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Escape карактер      " -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "Замени NULL со" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Линиите се завршуваат со" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Линиите се завршуваат со" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel издание" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 #, fuzzy msgid "Database name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 #, fuzzy msgid "Server name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 #, fuzzy msgid "Table name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6031,646 +6044,646 @@ msgstr "Шаблон на име на податотека" msgid "Dump table" msgstr "%s табела" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Вклучи и коментар на табелата" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Коментар на табела" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Продолжен коментар на табелите" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Ознака на клучот" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-типови" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Релации" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тип на извоз" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Препиши ги постоечките податотеки" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 #, fuzzy msgid "Remember file name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Името на полето стави го во '" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Датуми на креирање/ажурирање/проверка" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Користи одложен внес" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Исклучи проверка на надворешни клучеви" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Креирај нова табела во базата на податоци %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Игнорирај дупликати при внесување" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "Тип на извоз" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Изврши извоз во трансакција" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 #, fuzzy msgid "Export time in UTC" msgstr "Тип на извоз" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Automatic recovery mode" msgid "Customize browse mode." msgstr "Режим на автоматско опоравување" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy msgid "Customize default options." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV формат" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy msgid "Customize edit mode." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy msgid "Customize default export options." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Генерирај" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 #, fuzzy msgid "Import defaults" msgstr "Увоз на податотека" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "Customize default common import options." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy msgid "Customize appearance of the navigation panel." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 #, fuzzy msgid "Servers" msgstr "Сервер" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Add new field" msgid "Main panel" msgstr "Додади ново поле" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Број на страници:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Документација" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Documentation" msgid "Authentication settings." msgstr "Документација" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "MySQL connection collation" msgid "Enter server connection parameters." msgstr "Колација за MySQL врска" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Customize export options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy msgid "Customize navigation panel" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy msgid "Customize main panel" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "SQL упит" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "SQL упит" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "SQL упит" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "Статус" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy msgid "Customize startup page." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "База на податоци" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "База на податоци" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "Табела" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Релациона шема" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Димензија на хартијата" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Користи текст поле" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy msgid "Customize text input fields." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Customize default options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Исклучи проверка на надворешни клучеви" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Замени ги податоците во табелата со подаците од податотеката" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Стави ги имињата на полињата во првата редица" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6678,1119 +6691,1119 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "Максимална големина на привремените податотеки за подредување" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Memory limit" msgstr "Ограничување на ресурси" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Прикажи мрежа" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy msgid "Show logo in navigation panel." msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Коментар на табела" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Анализа на табелата" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Промени го редоследот во табелата" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Коментар на табела" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Промени го името на табелата во " -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key default sort order" msgstr "Примарниот клуч %s е додаден." -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Нишки на поправка" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational schema" msgid "Relational display" msgstr "Релациона шема" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 #, fuzzy msgid "Save directory" msgstr "Основен директориум на податоците" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Вредност на сесијата" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Documentation" msgid "Authentication method to use." msgstr "Документација" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Compress connection to MySQL server." msgstr "Не можам да се пријавам на MySQL серверот" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 #, fuzzy msgid "Connection type" msgstr "Конекции" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Било кој host" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Било кој host" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "Базата на податоци не постои" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "Избор на сервер" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Додади/избриши колона" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "Немој да ја менуваш лозинката" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "База на податоци" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "ID на серверот" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Анализа на табелата" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Променливи" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Поправка на табелата" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "Избор на сервер" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, fuzzy msgid "Enable SSL for connection to MySQL server." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Прикажувам коментари на колоните" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Дефрагментирај ја табелата" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Име" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Режим на автоматско опоравување" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Користи табели" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Користи ја табелата на host-от" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Прикажи информации за PHP" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy msgid "Show field types" msgstr "Прикажи табели" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Прикажи мрежа" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "Прикажи комплетни упити" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "SQL упит" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 #, fuzzy msgid "Show statistics" msgstr "Статистики за записите" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Додади/избриши колона" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Default" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7798,52 +7811,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7851,85 +7864,85 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Корисничко име:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Лозинка" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "ID на серверот" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL упит" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Modifications have been saved" msgid "Enable Zero Configuration mode" @@ -7951,46 +7964,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "Документација" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -8239,20 +8252,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Нема лозинка" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Лозинка:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8418,8 +8431,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8961,8 +8974,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9452,7 +9465,7 @@ msgstr "Одјавување" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документација" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "Опции за извоз на бази на податоци" @@ -10144,8 +10157,8 @@ msgstr "%s Добредојдовте" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10413,7 +10426,7 @@ msgstr "Стави ги имињата на полињата во првата #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11470,7 +11483,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11478,16 +11491,16 @@ msgstr "Назив на корисник" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Назив на корисник" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Лозинка" @@ -11516,10 +11529,10 @@ msgstr "ID на серверот" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -11531,47 +11544,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Било кој host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Локален" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Овој host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Било кој корисник" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Користи текст поле" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Користи ја табелата на host-от" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Повтори внес" @@ -12376,7 +12389,7 @@ msgstr "нема" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12454,14 +12467,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12473,7 +12486,7 @@ msgid "Administration" msgstr "Администрација" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Глобални привилегии" @@ -12484,7 +12497,7 @@ msgid "Global" msgstr "глобално" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" @@ -12503,151 +12516,151 @@ msgstr "" "Дозволува додавање на корисници и привилегии без повтроно вчитавање на " "табелата на привилегии." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Податоци за најавувањето" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Користи текст поле" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Немој да ја менуваш лозинката" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинката за %s успешно е променета." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ги забранивте привилегиите за %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Било кој корисник" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Провери привилегии за базата на податоци \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Корисници кои имаат пристап \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Прегледот %s е избришан" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Корисник" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Овозможи" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисникот не е пронајден." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Било кој" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "глобално" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "џокер" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Специфично за базата на податоци" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Промена на привилегии" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Забрани" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Ажурирање на следниот запис" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… сочувај го стариот." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… избриши ги старите од табелата на корисници." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12655,117 +12668,117 @@ msgstr "" "… избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Направи нов корисник со исти привилегии и …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Привилегии врзани за колоните" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Додади привилегии на следната база" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Додади привилегии на следната табела" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Избриши ги селектираните корисници" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" "Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Повторно ги вчитувам привилегиите" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Изабраните корисници успешно се избришани." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Ги ажуриравте привилегиите за %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Бришам %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s веќе постои!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегии" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Промена на привилегии" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Преглед на корисници" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL " "табелата на привилегии. Содржината на оваа табела табела може да се " @@ -12773,11 +12786,11 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Додадовте нов корисник." @@ -14573,22 +14586,22 @@ msgstr "Име на клуч :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Тип на клуч :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Корисник" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy msgid "Comment:" msgstr "Коментари" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15624,8 +15637,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15754,8 +15767,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/ml.po b/po/ml.po index 821d75dcdf..2fe152e3ae 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,15 +5,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-02-27 10:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" +"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -69,7 +69,7 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "നിര" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "കണ്ണികൾ" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "ഇല്ല" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -265,14 +265,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "പട്ടിക" @@ -285,7 +285,7 @@ msgid "Rows" msgstr "വരികൾ" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "വലിപ്പം" @@ -383,9 +383,9 @@ msgstr "" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -576,15 +576,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -615,8 +615,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -689,7 +689,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -710,7 +710,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -787,7 +787,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -1009,7 +1009,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1036,7 +1036,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1069,12 +1069,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1273,7 +1273,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1546,7 +1546,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1757,7 +1757,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2005,7 +2005,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "എല്ലാം കാണിക്കൂ" @@ -2272,7 +2272,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2757,16 +2757,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2885,7 +2885,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3287,8 +3287,8 @@ msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച് #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3325,6 +3325,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3340,12 +3341,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3534,7 +3535,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3549,11 +3550,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3569,7 +3570,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3595,9 +3596,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3659,9 +3660,9 @@ msgid "Central columns" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3769,7 +3770,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Show all" msgid "Favorite tables" @@ -3844,7 +3845,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4194,14 +4195,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4449,7 +4450,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4461,7 +4462,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4576,13 +4577,13 @@ msgstr "വിവരണം" msgid "Use this value" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4979,7 +4980,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5333,74 +5334,82 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 #, fuzzy #| msgid "Database comment:" msgid "Whether the table structure actions should be hidden." msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Database comment:" msgid "Hide table structure actions" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5410,60 +5419,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5472,594 +5481,594 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s ചേർക്കുക" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Database comment:" msgid "Databases display options." msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Table comments" msgid "Tables display options." msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database comment:" msgid "Database structure" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database comment:" msgid "Table structure" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6067,1058 +6076,1058 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show all" msgid "Show databases navigation as tree" msgstr "എല്ലാം കാണിക്കൂ" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Table comments" msgid "Show logo in navigation panel." msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table comments" msgid "Enable navigation tree expansion" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table comments" msgid "Table navigation bar" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Table comments" msgid "For display Options" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns table" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Show all" msgid "Favorites table" msgstr "എല്ലാം കാണിക്കൂ" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "പട്ടികകൾ ഉപയോഗിക്കുക" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7126,52 +7135,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7179,80 +7188,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7272,44 +7281,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7517,20 +7526,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7667,8 +7676,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8164,8 +8173,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8625,7 +8634,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Table comments" msgid "Reload navigation panel" @@ -9293,8 +9302,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9519,7 +9528,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10434,22 +10443,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10477,10 +10486,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10492,45 +10501,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11248,7 +11257,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11313,14 +11322,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11329,7 +11338,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11338,7 +11347,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11355,253 +11364,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13238,21 +13247,21 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comments" msgid "Comment:" msgstr "അഭിപ്രായങ്ങൾ" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -14221,8 +14230,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14340,8 +14349,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/mn.po b/po/mn.po index 6313a8a9a1..898e6ef983 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-05 10:28+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian \n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.0-dev\n" @@ -70,7 +70,7 @@ msgstr "Хүснэгтийн тайлбар" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -94,7 +94,7 @@ msgstr "Багана" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -150,8 +150,8 @@ msgid "Links to" msgstr "Холбоос" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -180,13 +180,13 @@ msgstr "Үндсэн" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -209,13 +209,13 @@ msgstr "Үгүй" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -271,14 +271,14 @@ msgstr "" "мэднэ үү." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Хүснэгт" @@ -291,7 +291,7 @@ msgid "Rows" msgstr "Мөрүүд" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Хэмжээ" @@ -391,9 +391,9 @@ msgstr "Статус" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -588,15 +588,15 @@ msgstr "Геометр нэмэх" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -637,8 +637,8 @@ msgstr "Оруулалтыг дуусгах" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Хэтэрхий том хэмжээтэй файл ачаалахыг оролдсон бололтой. Үүнийг хэрхэн " "шийдэхийг %sбаримтжуулалт%s-с уншина уу." @@ -717,7 +717,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Өмнөх" @@ -740,7 +740,7 @@ msgid "General Settings" msgstr "Ерөнхий хамаатай онцлог" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Нууц үг солих" @@ -837,7 +837,7 @@ msgstr "Хувилбарын мэдээлэл" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Баримт" @@ -1120,7 +1120,7 @@ msgstr "Шинэ талбар нэмэх" msgid "Edit Index" msgstr "Дараагийн мөрийг засах" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1158,7 +1158,7 @@ msgstr "Та багадаа нэг талбар нэм." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1195,12 +1195,12 @@ msgstr "Хостын нэр хоосон!" msgid "The user name is empty!" msgstr "Хэрэглэгчийн нэр хоосон!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Нууц үг хоосон байна!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" @@ -1424,7 +1424,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1732,7 +1732,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1985,7 +1985,7 @@ msgstr "SQL асуудал харуулах" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2263,7 +2263,7 @@ msgstr "Өгөгдөл заагчийн хэмжээ" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Үл тоох" @@ -2453,7 +2453,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Бүгдийг харах" @@ -2567,7 +2567,7 @@ msgstr "Шинэ талбар нэмэх" msgid "Show hidden navigation tree items." msgstr "Тор харуулах" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Use text field" @@ -3136,16 +3136,16 @@ msgid "Delete" msgstr "Устгах" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3280,7 +3280,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3735,8 +3735,8 @@ msgstr "Таны SQL-асуулт амжилттай ажиллав" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3774,6 +3774,7 @@ msgstr "Сонгогдсонтой:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3789,12 +3790,12 @@ msgstr "Солих" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3993,7 +3994,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Сервэр" @@ -4008,11 +4009,11 @@ msgstr "Харц" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -4028,7 +4029,7 @@ msgstr "Бүтэц" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4054,9 +4055,9 @@ msgstr "Оруулах" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Онцгой эрхүүд" @@ -4118,9 +4119,9 @@ msgid "Central columns" msgstr "Багана нэмэх/устгах" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Өгөгдлийн сангууд" @@ -4248,7 +4249,7 @@ msgid "Recent" msgstr "Да.эхлэх" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4327,7 +4328,7 @@ msgstr "Эрэмбэлж байна" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4709,14 +4710,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4974,7 +4975,7 @@ msgstr "ХИ хэмжээ: %s%s" msgid "MySQL said: " msgstr "MySQL хэлэх нь: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL тайлбар" @@ -4986,7 +4987,7 @@ msgstr "SQL тайлбарлахыг орхих" msgid "Without PHP Code" msgstr "PHP-кодгүй" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP-код үүсгэх" @@ -5106,13 +5107,13 @@ msgstr "Тайлбар" msgid "Use this value" msgstr "Уг утгыг хэрэглэх" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5545,7 +5546,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5905,77 +5906,89 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Хүснэгт ба талбарын нэрийг буруу хашилтаар хаах" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Хүснэгт ба талбарын нэрийг буруу хашилтаар хаах" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Хүснэгтийн бүтцийг таниулах" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Хүснэгтийн бүтцийг таниулах" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Хүснэгтийн ашиглалт" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Баримтжуулал" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Илгээх" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Тогтнол" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Шахалт" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5987,72 +6000,72 @@ msgstr "Шахалт" msgid "Put columns names in the first row" msgstr "Эхний мөрт талбаруудын нэрийг тавих" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Талбарыг хаасан" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Талбарыг нээсэн" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "NULL-ыг орлуулах нь" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Шугамыг төгсгөгч" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Шугамыг төгсгөгч" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-засвар" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6063,652 +6076,652 @@ msgstr "" msgid "Dump table" msgstr "%s хүснэгт(үүд)" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Хүснэгтийн гарчиг холбогдсон" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Хүснэгтийн гарчиг" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Үргэлжилсэн хүснэгтийн гарчиг" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-төрөл" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Хамаарал" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Гаргах төрөл" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Файл(ууд)-г дарж бичих" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Хүснэгт ба талбарын нэрийг буруу хашилтаар хаах" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL нийцтэй горим" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Үүсгэлт/Шинэчлэлт/Огноо шалгах" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Давталттай оруулалт хэрэглэх" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Нэмэх %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Оруулалтыг үл тоох" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Үүсгэгдсэн асуудлын хамгийн их урт" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Гаргах" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Хэлэлцээр дэх гаргалтыг хаах" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Automatic recovery mode" msgid "Customize browse mode." msgstr "Авто сэргээх горим" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Query results operations" msgid "Customize default options." msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Use text field" msgid "Customize edit mode." msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Query results operations" msgid "Customize default export options." msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Бий болгох" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Query results operations" msgid "Customize default common import options." msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Database export options" msgid "Databases display options." msgstr "ӨС гаргах сонголтууд" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Use text field" msgid "Customize appearance of the navigation panel." msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Сервэрүүд" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Relational schema" msgid "Servers display options." msgstr "Хамааралтай схем" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Table options" msgid "Tables display options." msgstr "Хүснэгтийн сонголтууд" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Add new field" msgid "Main panel" msgstr "Шинэ талбар нэмэх" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Хуудасны дугаар:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Баримт" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Documentation" msgid "Authentication settings." msgstr "Баримт" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "MySQL connection collation" msgid "Enter server connection parameters." msgstr "MySQL холболтын кодлол" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Use text field" msgid "Customize navigation panel" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Use text field" msgid "Customize main panel" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings." msgstr "Сервэрийн утгууд болон тохиргоонууд" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Use text field" msgid "Customize startup page." msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Хамааралтай схем" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Цаасны хэмжээ" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields." msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Оруулсан файлын тогтнол" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "LOCAL түлхүүр үг хэрэглэх" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Эхний мөрт талбаруудын нэрийг тавих" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6716,1112 +6729,1112 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "Завсрын эрэмбэлэх файлын ХИ хэмжээ" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Тор харуулах" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Use text field" msgid "Show logo in navigation panel." msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Хүснэгтийн гарчиг" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Хүснэгтийг задлах" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Хүснэгтийн гарчиг" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Хүснэгтийг да.нэрлэх" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key default sort order" msgstr "%s-д үндсэн түлхүүр нэмэгдлээ" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Thread засах" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational schema" msgid "Relational display" msgstr "Хамааралтай схем" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Relational schema" msgid "For display Options" msgstr "Хамааралтай схем" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Сессон утга" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Documentation" msgid "Authentication method to use." msgstr "Баримт" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Compress connection to MySQL server." msgstr "MySQL руу нэвтэрч чадсангүй" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Дурын хост" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Дурын хост" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Багана нэмэх/устгах" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "Нууц үгийг солихгүй" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "өгөгдлийн сангийн нэр" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Хүснэгтийг задлах" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Утгууд" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Баганын тайлбарыг харуулж байна" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Хүснэгт янзлах" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Баримтжуулал" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Авто сэргээх горим" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Хүснэгт хэрэглэх" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Хост хүснэгт хэрэглэх" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "PHP -ийн мэдээлэл харах" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Тор харуулах" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 msgid "" +"Defines whether SQL queries generated by phpMyAdmin should be displayed." +msgstr "" + +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" +msgstr "" + +#: libraries/config/messages.inc.php:764 +msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "in query" msgid "Retain query box" msgstr "асуултад" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Багана нэмэх/устгах" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Анхдагч" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -7829,52 +7842,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 msgid "" "The url of the proxy to be used when retrieving the information about the " "latest version of phpMyAdmin or when submitting error reports. You need this " @@ -7882,86 +7895,86 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username:" msgid "Proxy username" msgstr "Нэвтрэгч:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Нууц үг" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Execute bookmarked query" msgid "Enter executes queries in console" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Enable Zero Configuration mode" @@ -7983,48 +7996,48 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV хэрэглэх нь LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "Баримт" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 #, fuzzy #| msgid "Database export options" msgid "Database export options" msgstr "ӨС гаргах сонголтууд" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV өгөгдлийг MS Excel-ээр" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -8276,20 +8289,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Нууц үггүй" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Нууц үг:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8459,12 +8472,12 @@ msgstr "" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" -"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " +"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:526 msgid "use this for future exports" @@ -9014,8 +9027,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9507,7 +9520,7 @@ msgstr "Гарах" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin баримтжилт" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Use text field" msgid "Reload navigation panel" @@ -10201,11 +10214,11 @@ msgstr "%s-д тавтай морилно уу" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1" -"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." +"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та " +"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10469,7 +10482,7 @@ msgstr "Эхний мөрт талбаруудын нэрийг тавих" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11514,7 +11527,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11522,16 +11535,16 @@ msgstr "Хэрэглэгчийн нэр" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Хэрэглэгчийн нэр" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Нууц үг" @@ -11561,10 +11574,10 @@ msgstr "Server ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Хост" @@ -11576,47 +11589,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Дурын хост" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Энэ хост" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Дурын хэрэглэгч" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Бичвэр талбар хэрэглэх" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Хост хүснэгт хэрэглэх" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Дахин бич" @@ -12435,7 +12448,7 @@ msgstr "Байхгүй" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12504,14 +12517,14 @@ msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязг #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Хүснэгтийн тусгай онцгой эрхүүд" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12522,7 +12535,7 @@ msgid "Administration" msgstr "Зохион байгуулалт" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Глобал онцгой эрх" @@ -12533,7 +12546,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Онцгой эрх, өгөгдлийн сангийн эрх" @@ -12552,151 +12565,151 @@ msgstr "" "Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг " "зөвшөөрөх." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Нэвтрэх мэдээлэл" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Нууц үгийг солихгүй" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-ы нууц үг солигдлоо." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Онцгой эрх %s -ыг хүчингүй болголоо." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Дурын хэрэглэгч" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Хэрэглэгчдийн хандсан нь \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Харц %s нь устгагдсан" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Хэрэглэгч" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Хандив" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Хэрэглэгч олдсонгүй." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Дурын" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "загвар" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Өгөгдлийн сангийн эрх" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Онцгой эрхүүдийг засах" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Хүчингүй" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Дараагийн мөрийг засах" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… хуучныг үлдээх." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… хэрэглэгчийн хүснэгтүүдээс устгах." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12704,128 +12717,128 @@ msgstr "" "… хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " "болгох." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Онцгой эрхийг дахин дуудаж байна" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Онцгой эрх шинэчлэгдлээ" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s-г устгаж байна" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Хэрэглэгч %s оршин байна!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Онцгой эрхүүд" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Онцгой эрхүүдийг засах" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "User overview" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." @@ -14670,23 +14683,23 @@ msgstr "Индексийн нэр :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Индексийн төрөл :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Хэрэглэгч" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comments" msgid "Comment:" msgstr "Тайлбар" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15735,8 +15748,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15868,8 +15881,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -17350,8 +17363,8 @@ msgstr "ХИ. давхацсан холболтууд" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%" -#~ "s дарж шалгах." +#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд" +#~ "%s дарж шалгах." #~ msgid "Ignore duplicate rows" #~ msgstr "Давхардсан мөрүүдийг алгасах" diff --git a/po/ms.po b/po/ms.po index b0b6e95119..90102a4eb9 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-05 10:35+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay \n" +"Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ms\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.0-dev\n" @@ -70,7 +70,7 @@ msgstr "Komen jadual" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "Pangkalan data %1$s telah dijana." #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "Pautan ke" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "Utama" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "Tidak" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -272,14 +272,14 @@ msgstr "" "klik %shere%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Jadual" @@ -292,7 +292,7 @@ msgid "Rows" msgstr "Baris" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Saiz" @@ -392,9 +392,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -598,15 +598,15 @@ msgstr "Tambah geometri" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -647,11 +647,11 @@ msgstr "Kemasukkan Selesai" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Anda mungkin cuba memuatnaik fail yang terlalu besar. Sila rujuk %" -"sdocumentation%s untuk mengetahui had yang dibenarkan." +"Anda mungkin cuba memuatnaik fail yang terlalu besar. Sila rujuk " +"%sdocumentation%s untuk mengetahui had yang dibenarkan." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -726,7 +726,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Undur" @@ -750,7 +750,7 @@ msgid "General Settings" msgstr "Ciri-ciri hubungan am" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Ubah Katalaluan" @@ -840,7 +840,7 @@ msgstr "Informasi MasaJana" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentasi" @@ -1104,7 +1104,7 @@ msgstr "Indeks" msgid "Edit Index" msgstr "Indeks" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format msgid "Add %s column(s) to index" msgstr "Tambah medan baru" @@ -1140,7 +1140,7 @@ msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1177,12 +1177,12 @@ msgstr "Nama hos adalah kosong!" msgid "The user name is empty!" msgstr "Kata Pengenalan kosong!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Katalaluan adalah kosong!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" @@ -1394,7 +1394,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1693,7 +1693,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1931,7 +1931,7 @@ msgstr "kueri-SQL" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2201,7 +2201,7 @@ msgstr "Kandungan" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Abai" @@ -2388,7 +2388,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Papar semua" @@ -2499,7 +2499,7 @@ msgstr "Indeks" msgid "Show hidden navigation tree items." msgstr "Papar grid" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Indexes" @@ -3059,16 +3059,16 @@ msgid "Delete" msgstr "Padam" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3199,7 +3199,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3634,8 +3634,8 @@ msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3672,6 +3672,7 @@ msgstr "Dengan pilihan:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3687,12 +3688,12 @@ msgstr "Ubah" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3889,7 +3890,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Pelayan" @@ -3904,11 +3905,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3924,7 +3925,7 @@ msgstr "Struktur" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3950,9 +3951,9 @@ msgstr "Selit" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilej" @@ -4014,9 +4015,9 @@ msgid "Central columns" msgstr "Tambah/Padam Kolum Medan" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "pangkalan data" @@ -4137,7 +4138,7 @@ msgid "Recent" msgstr "Ulangtetap" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4214,7 +4215,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4590,14 +4591,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4852,7 +4853,7 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL berkata: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Terangkan Kod SQL" @@ -4864,7 +4865,7 @@ msgstr "" msgid "Without PHP Code" msgstr "Tanpa Kod PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Cipta Kod PHP" @@ -4982,13 +4983,13 @@ msgstr "Keterangan" msgid "Use this value" msgstr "Guna nilai ini" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5411,7 +5412,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5768,78 +5769,90 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Sertakan nama jadual dan medan dengan backquotes" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Sertakan nama jadual dan medan dengan backquotes" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Cadangkan struktur jadual" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Cadangkan struktur jadual" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Penyenggaraan Jadual" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Penyataan" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Simpan sebagai fail" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "Fail bagi set Aksara:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Mampatan" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5851,68 +5864,68 @@ msgstr "Mampatan" msgid "Put columns names in the first row" msgstr "Letakkan medan di baris pertama" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Medan disertai oleh" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Medan dilarikan oleh" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Baris ditamatkan oleh" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Baris ditamatkan oleh" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5923,629 +5936,629 @@ msgstr "" msgid "Dump table" msgstr "%s jadual" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 #, fuzzy msgid "Relations" msgstr "Operasi" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "Eksport" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Sertakan nama jadual dan medan dengan backquotes" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Use delayed inserts" msgstr "Penyelitan Lanjutan" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Cipta jadual baru pada pangkalan data %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Penyelitan Lanjutan" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Eksport" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "data CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 -#, fuzzy -msgid "Customize default export options." -msgstr "Statistik pangkalan data" - -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 -#: setup/frames/menu.inc.php:22 -msgid "Features" -msgstr "" - #: libraries/config/messages.inc.php:226 #, fuzzy +msgid "Customize default export options." +msgstr "Statistik pangkalan data" + +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 +#: setup/frames/menu.inc.php:22 +msgid "Features" +msgstr "" + +#: libraries/config/messages.inc.php:228 +#, fuzzy msgid "General" msgstr "Dijana oleh" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "Statistik pangkalan data" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 #, fuzzy msgid "Servers" msgstr "Pelayan" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "Statistik pangkalan data" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "Statistik pangkalan data" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Indexes" msgid "Main panel" msgstr "Indeks" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Muka Surat:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Documentation" msgid "Authentication settings." msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "kueri-SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "kueri-SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "kueri-SQL" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "pangkalan data" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "pangkalan data" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "Jadual" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Skema Hubungan" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "Tambah medan baru" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Add new field" msgid "Customize text input fields." msgstr "Tambah medan baru" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Ganti data jadual dengan fail" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Letakkan medan di baris pertama" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6553,1106 +6566,1106 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Papar grid" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Table of contents" msgid "Show logo in navigation panel." msgstr "Kandungan" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table of contents" msgid "Enable navigation tree expansion" msgstr "Kandungan" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analyze table" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alter table order by" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table of contents" msgid "Table navigation bar" msgstr "Kandungan" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tukarnama jadual ke" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational schema" msgid "Relational display" msgstr "Skema Hubungan" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "Statistik pangkalan data" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Nilai Sessi" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Documentation" msgid "Authentication method to use." msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 #, fuzzy msgid "Connection type" msgstr "Hubungan" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Sebarang hos" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Sebarang hos" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "Tiada pangkalan data" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Tambah/Padam Kolum Medan" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "Jangan tukar katalaluan" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Pangkalan Data" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analyze table" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Pemboleh-pembolehubah" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Baiki jadual" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Memaparkan Komen Kolum" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Penyataan" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy msgid "Automatically create versions" msgstr "Versi Pelayan" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Guna Jadual" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Papar maklumat PHP" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy msgid "Show field types" msgstr "Papar jadual" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Papar grid" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 msgid "" +"Defines whether SQL queries generated by phpMyAdmin should be displayed." +msgstr "" + +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" +msgstr "" + +#: libraries/config/messages.inc.php:764 +msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "kueri-SQL" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 #, fuzzy msgid "Show statistics" msgstr "Statistik Baris" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Tambah/Padam Kolum Medan" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Asal" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7660,52 +7673,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 msgid "" "The url of the proxy to be used when retrieving the information about the " "latest version of phpMyAdmin or when submitting error reports. You need this " @@ -7713,84 +7726,84 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Namapengguna:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Katalaluan" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Modifications have been saved" msgid "Enable Zero Configuration mode" @@ -7812,47 +7825,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "Dokumentasi" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 #, fuzzy msgid "Database export options" msgstr "Statistik pangkalan data" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV untuk sata MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -8098,20 +8111,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Tiada Katalaluan" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Katalaluan:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8272,8 +8285,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8793,8 +8806,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9277,7 +9290,7 @@ msgstr "Log keluar" msgid "phpMyAdmin documentation" msgstr "Dokumentasi phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Table of contents" msgid "Reload navigation panel" @@ -9958,8 +9971,8 @@ msgstr "Selamat Datang ke %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10213,7 +10226,7 @@ msgstr "Letakkan medan di baris pertama" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11181,7 +11194,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11189,16 +11202,16 @@ msgstr "Kata Pengenalan" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Kata Pengenalan" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Katalaluan" @@ -11228,10 +11241,10 @@ msgstr "Pelayan" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Hos" @@ -11243,47 +11256,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Sebarang hos" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Sebarang pengguna" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Add new field" msgid "Use text field:" msgstr "Tambah medan baru" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Ulang-taip" @@ -12064,7 +12077,7 @@ msgstr "Tiada" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12132,14 +12145,14 @@ msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12150,7 +12163,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 #, fuzzy msgid "Global privileges" msgstr "Tiada Privilej" @@ -12162,7 +12175,7 @@ msgid "Global" msgstr "Nilai Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -12179,263 +12192,263 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 #, fuzzy msgid "Login Information" msgstr "Informasi MasaJana" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Jangan tukar katalaluan" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Sebarang pengguna" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy msgid "User has been added." msgstr "Medan %s telah digugurkan" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Pengguna" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 #, fuzzy msgid "Grant" msgstr "Cetak" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Tiada pengguna dijumpai." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Sebarang" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Ubah Privilej" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "TarikBalik" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah mengemaskini privilej bagi %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilej" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Ubah Privilej" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." @@ -14196,22 +14209,22 @@ msgstr "Nama indeks :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Jenis indeks :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Pengguna" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy msgid "Comment:" msgstr "Komen" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15232,8 +15245,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15359,8 +15372,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/nb.po b/po/nb.po index 02ca019e79..8f925fdea1 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-20 14:41+0200\n" "Last-Translator: Tomas \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" @@ -34,7 +34,6 @@ msgstr "Klikk for å sortere." #: db_central_columns.php:148 #, php-format -#| msgid "Showing rows %1s - %2s" msgid "Showing rows %1$s - %2$s." msgstr "Viser radene %1$s - %2$s." @@ -68,7 +67,7 @@ msgstr "Tabellkommentarer:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +91,7 @@ msgstr "Kolonne" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +147,8 @@ msgid "Links to" msgstr "Lenker til" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +177,13 @@ msgstr "Primær" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +206,13 @@ msgstr "Nei" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -247,7 +246,6 @@ msgstr "Databasenavnet er tomt!" #: db_operations.php:132 #, php-format -#| msgid "Database %1$s has been renamed to %2$s." msgid "Database %1$s has been renamed to %2$s." msgstr "Databasen %1$s endret navn til %2$s." @@ -258,22 +256,19 @@ msgstr "Databasen %1$s har blitt kopiert til %2$s." #: db_operations.php:259 #, php-format -#| msgid "" -#| "The phpMyAdmin configuration storage has been deactivated. To find out " -#| "why click %shere%s." msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "phpMyAdmin konfigurasjonslager har blitt deaktivert. %sSe hvorfor%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabell" @@ -286,7 +281,7 @@ msgid "Rows" msgstr "Rader" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Størrelse" @@ -334,13 +329,11 @@ msgid "Access denied!" msgstr "Ingen tilgang!" #: db_tracking.php:39 db_tracking.php:64 -#| msgid "Track these data definition statements:" msgid "Tracking data deleted successfully." msgstr "Sporingsdata ble slettet." #: db_tracking.php:48 #, php-format -#| msgid "Version %s is created, tracking for %s.%s is activated." msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" @@ -348,7 +341,6 @@ msgstr "" "aktivert." #: db_tracking.php:79 -#| msgid "No databases selected." msgid "No tables selected." msgstr "Ingen tabeller er valgt." @@ -379,9 +371,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -395,7 +387,6 @@ msgid "Show" msgstr "Vis" #: db_tracking.php:139 db_tracking.php:231 -#| msgid "Deleting tracking data" msgid "Delete tracking" msgstr "Fjern overvåkning" @@ -576,15 +567,15 @@ msgstr "Legg til geometri" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -603,7 +594,6 @@ msgstr "" "i feltet \"Verdi\"." #: import.php:54 -#| msgid "Access denied!" msgid "Succeeded" msgstr "Vellykket" @@ -618,11 +608,11 @@ msgstr "Ufullstendige parametre" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Du forsøkte sannsynligvis å laste opp en fil som var for stor. Sjekk %" -"sdokumentasjonen%s for måter å omgå denne begrensningen på." +"Du forsøkte sannsynligvis å laste opp en fil som var for stor. Sjekk " +"%sdokumentasjonen%s for måter å omgå denne begrensningen på." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -706,7 +696,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Tilbake" @@ -730,7 +720,7 @@ msgid "General Settings" msgstr "Generelle innstillinger" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Endre passord" @@ -789,7 +779,6 @@ msgid "PHP extension:" msgstr "PHP tillegg:" #: index.php:345 -#| msgid "PHP Version" msgid "PHP version:" msgstr "PHP-versjon:" @@ -804,7 +793,7 @@ msgstr "Versjonsinformasjon:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentasjon" @@ -830,11 +819,6 @@ msgid "List of changes" msgstr "Endringsliste" #: index.php:447 -#| 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 " @@ -969,27 +953,22 @@ msgid "You are about to TRUNCATE a complete table!" msgstr "Du er i ferd med å AVKORTE en hel database!" #: js/messages.php:40 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data for this table?" msgstr "Slette overvåkningsdata for denne tabellen?" #: js/messages.php:41 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data for these tables?" msgstr "Slette overvåkningsdata for disse tabellene?" #: js/messages.php:42 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data for this version?" msgstr "Slette overvåkningsdata for denne versjonen?" #: js/messages.php:43 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data for these versions?" msgstr "Slette overvåkningsdata for disse versjonene?" #: js/messages.php:44 -#| msgid "Delete tracking data for this table" msgid "Delete entry from tracking report?" msgstr "Slette innlegget fra overvåkningsrapporten?" @@ -1026,12 +1005,10 @@ msgstr "" "denne siden?" #: js/messages.php:52 -#| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to revoke the selected user(s) ?" msgstr "Vil du virkelig tilbakekalle valgt(e) bruker(e)?" #: js/messages.php:53 -#| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to delete this central column?" msgstr "Vil du virkelig slette denne sentrale kolonnen?" @@ -1073,13 +1050,12 @@ msgstr "Legg til index" msgid "Edit Index" msgstr "Rediger indeks" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Legg %s kolonne(r) til index" #: js/messages.php:68 -#| msgid "Create routine" msgid "Create single-column index" msgstr "Opprett en enkeltkolonneindeks" @@ -1101,7 +1077,7 @@ msgstr "Du må sette inn minst en kolonne." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Forhåndsvis SQL" @@ -1110,7 +1086,6 @@ msgid "Simulate query" msgstr "Simuler spørring" #: js/messages.php:81 -#| msgid "Affected rows:" msgid "Matched rows:" msgstr "Matchede rader:" @@ -1131,12 +1106,12 @@ msgstr "Vertsnavnet er tomt!" msgid "The user name is empty!" msgstr "Brukernavnet er tomt!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Passordet er blankt!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" @@ -1338,7 +1313,7 @@ msgstr "Legg minst én variabel til serien!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1631,7 +1606,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1774,7 +1749,6 @@ msgid "(Disabled)" msgstr "(Deaktivert)" #: js/messages.php:280 -#| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Klarte ikke å hente antall rader." @@ -1845,7 +1819,7 @@ msgstr "Vis spørringsboks" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1916,7 +1890,6 @@ msgid "Primary key added." msgstr "Primærnøkkel lagt til." #: js/messages.php:323 libraries/normalization.lib.php:174 -#| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Tar deg videre til neste trinn…" @@ -1928,7 +1901,6 @@ msgstr "Første trinn av normaliseringen er ferdig for tabellen '%s'." #: js/messages.php:325 libraries/normalization.lib.php:422 #: libraries/normalization.lib.php:469 libraries/normalization.lib.php:552 #: libraries/normalization.lib.php:612 -#| msgid "End of line" msgid "End of step" msgstr "Slutten på dette trinnet" @@ -1958,7 +1930,6 @@ msgstr "" "bestemme verdiene for kolonne d og kolonne f." #: js/messages.php:331 -#| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Ingen delvise avhengigheter er valgt!" @@ -1992,7 +1963,6 @@ msgid "DROP columns %s from the table %s" msgstr "SLETT kolonnene %s fra tabellen %s" #: js/messages.php:339 -#| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Lag følgende tabell" @@ -2009,7 +1979,6 @@ msgid "Selected dependencies are as follows:" msgstr "Følgende er valgte avhengigheter:" #: js/messages.php:345 -#| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Ingen avhengigheter er valgt!" @@ -2049,12 +2018,10 @@ msgid "Column minimum:" msgstr "Kolonnenavn: " #: js/messages.php:356 -#| msgid "Maximum tables" msgid "Minimum value:" msgstr "Minimumsverdi:" #: js/messages.php:357 -#| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maksimumsverdi:" @@ -2107,7 +2074,7 @@ msgstr "Datapunktinnhold" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorer" @@ -2301,7 +2268,7 @@ msgstr "Klikk pilen som peker ned
for å bytte på kolonnens synlighet." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Vis alle" @@ -2404,7 +2371,7 @@ msgstr "Skjul panel" msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigasjonstreet." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main panel" @@ -2917,16 +2884,16 @@ msgid "Delete" msgstr "Slett" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3063,7 +3030,7 @@ msgid "During current session" msgstr "Hopp over nåværende feil" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3454,8 +3421,8 @@ msgstr "Kommandoen/spørringen er utført." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." #: libraries/DisplayResults.class.php:4560 @@ -3490,6 +3457,7 @@ msgstr "Med avkrysset:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3505,12 +3473,12 @@ msgstr "Endre" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3599,8 +3567,8 @@ msgstr "Ukjent feil oppstod under filopplastingen." #: libraries/File.class.php:461 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -"Feil oppstod under forsøk på flytting av den opplastede filen, se [doc@faq1-" -"11]FAQ 1.11[/doc]." +"Feil oppstod under forsøk på flytting av den opplastede filen, se " +"[doc@faq1-11]FAQ 1.11[/doc]." #: libraries/File.class.php:479 msgid "Error while moving uploaded file." @@ -3709,7 +3677,7 @@ msgstr "" "fjernes." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Tjener" @@ -3724,11 +3692,11 @@ msgstr "Vis" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3744,7 +3712,7 @@ msgstr "Struktur" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3770,9 +3738,9 @@ msgstr "Sett inn" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegier" @@ -3834,9 +3802,9 @@ msgid "Central columns" msgstr "CHAR textarea kolonner" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Databaser" @@ -3944,7 +3912,7 @@ msgid "Recent" msgstr "Nylige" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Favorittabeller" @@ -4016,7 +3984,7 @@ msgstr "Sortering" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4387,16 +4355,16 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Et lite flyttall, tillatte verdier er fra -3,402823466E+38 til -1,175494351E-" -"38, 0, og fra 1,175494351E-38 til 3,402823466E+38" +"Et lite flyttall, tillatte verdier er fra -3,402823466E+38 til " +"-1,175494351E-38, 0, og fra 1,175494351E-38 til 3,402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Et dobbelt presisjons flyttall, tillatte verdier er fra -1,7976931348623157E" @@ -4685,7 +4653,7 @@ msgstr "Maksimum størrelse: %s%s" msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Forklar SQL" @@ -4697,7 +4665,7 @@ msgstr "Ikke forklar SQL" msgid "Without PHP Code" msgstr "uten PHP kode" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Lag PHP kode" @@ -4814,13 +4782,13 @@ msgstr "Beskrivelse" msgid "Use this value" msgstr "Bruk denne verdien" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5237,7 +5205,7 @@ msgid "Set value: %s" msgstr "Sett verdi: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Gjennopprett standard verdi" @@ -5393,8 +5361,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Hvis du føler at dette er nødvending, så bruk ekstra " -"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" +"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" "page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. " "Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en " "Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet." @@ -5767,27 +5735,39 @@ msgstr "Fanen som vises når en tabell tas i bruk" msgid "Default table tab" msgstr "Standard tabellfane" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Bruk venstre anførselstegn med tabell og kolonnenavn" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Bruk venstre anførselstegn med tabell og kolonnenavn" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Foreslå tabellstruktur" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Skjul handlinger i tabellstruktur" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Vis tjenere som en liste istedet for en nedtrekksliste." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Vis tjenere som en liste" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5795,11 +5775,11 @@ msgstr "" "Deaktiver masseoperasjoner for tabellvedlikehold, som optimalisering eller " "reparasjon av de valgte tabellene til en database." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Deaktiver multitabellvedlikehold" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5811,39 +5791,39 @@ msgstr "" "Antall sekunder et skript har lov til å kjøre ([kbd]0[/kbd] for ingen " "begrensning)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maks kjøretid" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Oversikt" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Lagre som fil" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Filens tegnsett" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Kompresjon" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5853,66 +5833,66 @@ msgstr "Kompresjon" msgid "Put columns names in the first row" msgstr "Sett inn kolonnenavn i første rad" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Kolonner omsluttet av" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" msgstr "Kolonner beskyttet med" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Erstatt NULL med" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Fjern CRLF tegn inne i kolonner" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Kolonner avsluttet med" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Linker avsluttet med" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel stil" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Databasenavnmal" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Tjenernavnmal" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Tabellnavnmal" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5921,139 +5901,139 @@ msgstr "Tabellnavnmal" msgid "Dump table" msgstr "Dump tabell" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Inkluder tabelloverskrift" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Tabelloverskrift" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Fortsettet tabelloverskrift" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Merkelappnøkkel" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relasjoner" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Eksportmetode" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Lagre på tjener" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Skriv over eksisterende filer" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Husk filnavnmal" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Bruk venstre anførselstegn med tabell og kolonnenavn" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL kompatibilitetsmodus" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "OPPRETT TABELL valg:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Opprettelse/Oppdaterings/Kontrolldato" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Bruk forsinkede innsettinger" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Slå av kontroll av fremmednøkler" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Eksporter views som tabeller" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Legg til %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Bruk heksadesimal for BINARY & BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Bruk ignore inserts" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Syntaks i bruk ved innsetting av data" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maksimum lengde av opprettet spørring" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Eksport type" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Inneslutt eksport i en transaksjon" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Eksport tid i UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "Tving sikker tilkobling ved bruk av phpMyAdmin" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Tving SSL tilkobling" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -6065,170 +6045,170 @@ msgstr "" "Sorteringsrekkefølge for elementer i en fremmednøkkel nedfallsboks; [kbd]" "content[/kbd] for refererte data, [kbd]id[/kbd] for nøkkelverdien" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Fremmednøkkelrekkefølge" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "En nedfallsboks vil bli brukt hvis færre elementer er tilstede" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Fremmednøkkelbegrensning" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Visningsmodus" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "Endre visningsmodus" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default options" msgid "Customize default options." msgstr "Tilpass standardinstillinger" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV-data" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Utvikler" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "Instillinger for phpMyAdmin utviklere" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Redigeringsmodus" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "Endre redigeringsmodus" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Eksportinnstillinger" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "Endre standard eksportinnstillinger" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Egenskaper" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Generell" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "Angi noen vanlig brukte alternativer" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importinnstillinger" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "Endre standard importinnstillinger" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Import / eksport" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "Set import and eksport mapper og komprimeringsinnstillinger" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "Databasevisningsinnstillinger" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigasjonspanel" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "Endre utseendet til navigasjonsrammen" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Tjenere" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "Tjenervisningsinnstillinger" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "Tabellvisningsinnstillinger" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Hovedpanel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Andre hovedinnstillinger" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "Innstillinger som ikke passer andre steder" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Sidetitler" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6237,19 +6217,19 @@ msgstr "" "dokumentasjon[/doc] for spesielle strenger som kan tas i bruk for å tilgang " "til spesialverdier." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Spørringsvindu" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Endre spørringsvinduinnstillinger" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Sikkerhet" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6261,25 +6241,25 @@ msgstr "" "Merk at phpMyAdmin er bare et brukergrensesnitt og dens egenskaper begrenser " "ikke MySQL" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Grunnleggende innstillinger" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Godkjenning" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "Innstillinger godkjenning" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Tjenerinnstillinger" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6291,17 +6271,17 @@ msgstr "" "Avanserte tjenerinnstillinger, ikke endre disse hvis du ikke vet hva de er " "for" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "Legg til tjenertilkoblingsparametre" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Konfigurasjonslager" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -6316,11 +6296,11 @@ msgstr "" "funksjonalitet, se [doc@linked-tables]phpMyAdming konfigurasjonslager[/doc] " "i dokumentasjonen" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Endringssporing" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6328,119 +6308,119 @@ msgstr "" "Sporing av endringer utført i databasen. Krever at phpMyAdming " "konfigurasjonslager er satt opp." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Endre eksportstandarder" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Endre importstandarder" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Tilpasse navigasjonspanelet" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Tilpasse hovedpanelet" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL spørringer" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL spørringsboks" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "Endre linker vist i SQL spørringsbokser" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "SQL søkeinnstilinger" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Oppstart" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "Endre oppstartssiden" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Databasestruktur" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Tabellstruktur" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Faner" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Velg hvordan du ønsker fanene skal fungere" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Vis relasjonsskjema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Papirstørrelse" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Tekstfelt" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "Tilpass tekstfelter" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Tilpass standardinstillinger" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Advarsler" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Slå av noen av advarslene fra phpMyAdmin" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6452,15 +6432,15 @@ msgstr "" "Slå på [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a]-komprimering for import " "og eksportoperasjoner" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Ekstra parametre for iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6472,11 +6452,11 @@ msgstr "" "Hvis påslått vil PMA forsette å behandle flerspørrings spørringer også hvis " "en av spørringene feiler" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignorer flere spørringsfeil" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6486,28 +6466,28 @@ msgstr "" "nærheten av tidsbegrensningen. Dette kan være en god måte å importere store " "filer, men den kan knekke transaksjoner." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Delvis import: tillat avbrudd" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Slå av kontroll av fremmednøkler" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Ikke avbryt under INSERT feil" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Erstatt tabell med filen" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6519,62 +6499,62 @@ msgstr "" "Standard format, merk at denne lista avhenger av lokasjon (database, tabell) " "og bare SQL er alltid tilgjengelig" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Importfilformat" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Bruk LOCAL nøkkelord" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Kolonnenavn i første rad" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Ikke importer tomme rader" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importer valuta ($5.00 til 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importer prosenter som heltall (12.00% til .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "Antall poster(spørringer) å hoppe over fra start" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Delvis import: hopp over spørringer" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ikke bruk AUTO_INCREMENT for nullverdier" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Initiell tilstand for slidere" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "Hvor mange rader som kan settes inn på en gang" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Antall innsettingsrader" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "" #| "Maximum number of characters shown in any non-numeric column on browse " @@ -6584,11 +6564,11 @@ msgid "" msgstr "" "Maksimalt antall karakterer vist i ikke-numeriske kolonner i oversiktsvisning" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Begrens kolonne tegn" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6598,11 +6578,11 @@ msgstr "" "ellers bare for den aktuelle tjeneren. Sett denne til FALSE gjør det lett å " "glemme å logge ut fra andre tjenere når du bruker flere." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Slett alle cookies ved utlogging" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6614,11 +6594,11 @@ msgstr "" "Definerer om forrige innlogging skal husker eller ikke i cookie " "autentiseringsmodus" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Husk brukernavn" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6630,56 +6610,56 @@ msgstr "" "sessjon, det vil si at den vil bli slettet så fort du lukker " "nettleservinduet. Dette er anbefalt for ikke sikre brukermiljøer." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Innloggings cookie lagring" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "Definer hvor lenge (i sekunder) en innloggings cookie skal være gyldig" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Innloggings cookie gyldighet" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "Dobbel størrelse i tekstområde for LONGTEXT kolonner" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Større tekstområde for LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Maks antall tegn brukt når en SQL spørring er framvist" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Maks lengde SQL" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Brukere kan ikke angi en høyere verdi" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." msgstr "Maks antall tabeller vist i tabellista" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Maks antall databaser" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " @@ -6690,24 +6670,24 @@ msgid "" msgstr "" "Antall elementer som kan vises på hver enkelt side av navigasjonstreet." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for input field" msgid "Maximum items on first level" msgstr "Maksimum størrelse for innskrivningsfelt" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" "Antall elementer som kan vises på hver enkelt side av navigasjonstreet." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6715,21 +6695,21 @@ msgstr "" "Antall rader som viser ved framvisning av et resultat. Hvis resultatet " "inneholder flere rader vil \"Forrige\" og \"Neste\" linker bli vist." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Maks antall rader som kan framvises" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "Maks antall tabeller vist i tabellista" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maks antall tabeller" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6741,45 +6721,45 @@ msgstr "" "Maks antal byte et skript har lov til å bruke, f.eks. [kbd]32M[/kbd] ([kbd]0" "[/kbd] for ingen begrensning)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Minnetak" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Vis skjulte elementer i navigasjonstreet." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "Vis logo i venstre ramme" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Vis logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to." msgstr "URL hvor logoen i navigasjonsrammen skal peke til" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -6791,31 +6771,31 @@ msgstr "" "Åpne den linkede siden i hovedvinduet ([kbd]main[/kbd]) eller i en ny en " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Logo link mål" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "Vis tjenervalg øverst i venstre ramme" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Vis tjenerutvalg" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Mål for hurtigtilgangsikon" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Mål for hurtigtilgangsikon" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6823,15 +6803,15 @@ msgstr "" "Angi minste antall elementer (tabeller, views, rutiner og hendelser) som " "skal vises i en filterboks." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Minste antall elementer som kreves for å vise filterboksen" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Minste antall databaser som skal vises i database-filterboksen" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " @@ -6843,113 +6823,113 @@ msgstr "" "Kun i hurtigversjon; vis databaser i et tre (bestemmes av skilletegnet " "definert nedenfor)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "Streng som skiller databaser i forskellige trenivåer" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Database treskilletegn" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "Streng som skiller tabeller i forskellige trenivåer" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Tabelltreseparator" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maks tabelltredybde" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "Uthev tjener under musmarkøren" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Aktiver utheving" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Tabellbasert navigasjonsområde" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Maksimalt antall nylig brukte tabeller; sett til 0 for å deaktivere" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Maksimalt antall nylig brukte tabeller; sett til 0 for å deaktivere" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Sist brukte tabeller" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "Disse er Rediger-, kopi- og slettelenker" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Hvor tabell-lenkene skal vises" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Normal rekkefølge" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, 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:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Tabellbasert navigasjonsområde" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip utbuffring" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -6961,21 +6941,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Standard sorteringsrekkefølge" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, 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:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Vedvarende forbindelser" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -6989,11 +6969,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -7005,11 +6985,11 @@ msgstr "" "Slå av forvalgt advarsel som blir vist hvis mcrypt mangler ved " "informasjonskapsel autentisering" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7022,27 +7002,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Hvordan menyfanene vises" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Ikke tillat redigering av BLOB- eller BINARY-kolonner." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Beskytt binære kolonner" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -7052,53 +7032,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Permanent spørringshistorie" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, 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:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Spørringshistorielengde" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Rekodingsmotor" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Husk tabellens sortering" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Standard sorteringsrekkefølge" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -7106,91 +7086,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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Gjenta topptekst" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Relasjonsvisningskolonne" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "Tjenervisningsinnstillinger" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Rutenett - redigering: Lagre alle redigerte celler på en gang" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Lagringsmappe" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, 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:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Rekkefølge for vertsautorisering" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "La stå tom for standard" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Regler for vertsautorisering" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Tillat innlogging uten passord" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Tillat innlogging som root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Økts verdi" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -7204,21 +7184,21 @@ msgstr "" "Stien til konfigfila for [a@http://swekey.com]SweKey hardware authentication" "[/a] (ikke lokalisert i din dokumentrot; foreslått: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey config fil" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "Autentiseringsmetode som skal brukes" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Autentiseringstype" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -7226,11 +7206,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Bokmerketabell" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -7242,35 +7222,35 @@ msgstr "" "La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Kolonneinformasjonstabell" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "Komprimer tilkoblingen til MySQL tjeneren" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Komprimer tilkobling" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Tilkoblingstype" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Kontrollbrukerpassord" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7284,11 +7264,11 @@ msgstr "" "informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/controluser]" "wiki[/a]" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Kontrollbruker" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 #, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " @@ -7300,11 +7280,11 @@ msgstr "" "En alternativ vert til å holde konfigurasjonslageret; la være tom for å " "bruke den allerede definerte verten" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Kontrollvert" -#: 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 " @@ -7317,19 +7297,19 @@ msgstr "" "En alternativ vert til å holde konfigurasjonslageret; la være tom for å " "bruke den allerede definerte verten" -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control host" msgid "Control port" msgstr "Kontrollvert" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, 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:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7337,15 +7317,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Slå av bruk av INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Skul databaser" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7356,25 +7336,25 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL spørringshistorietabell" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, 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:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Tjenervertsnavn" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Logg ut URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 #, fuzzy #| msgid "" #| "Limits number of table preferences which are stored in database, the " @@ -7386,17 +7366,17 @@ msgstr "" "Begrenser antall tabellpreferanser som blir lagret i databasen, de eldste " "postene blir automatisk slettet" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Maksimalt antall tabellpreferanser som lagres" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "Se slavestatustabell" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7406,13 +7386,13 @@ msgid "" msgstr "" "La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns table" msgstr "CHAR textarea kolonner" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7423,17 +7403,17 @@ msgid "" msgstr "" "La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, 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:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Koble til uten passord" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -7452,21 +7432,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Vis kun opplistede databaser" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Passord for config autentisering" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7475,11 +7455,11 @@ msgid "" msgstr "" "La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF schema: sidetabell" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7494,22 +7474,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Ddatabasenavn" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Tjenerport" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]" @@ -7519,11 +7499,11 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Nylig brukt tabell" -#: 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]" @@ -7533,13 +7513,13 @@ 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 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Favorittabeller" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7551,11 +7531,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relasjonstabell" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7567,35 +7547,35 @@ msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/" "a] for et eksempel" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Signon sesjonsnavn" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Innloggingslink" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Tjenersokkel" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Bruk SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7606,13 +7586,13 @@ msgid "" msgstr "" "La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF schema: tabellkoordinater" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " @@ -7624,11 +7604,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Visningskolonnetabell" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]" @@ -7638,11 +7618,11 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabell for UI preferanser" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7650,11 +7630,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Legg til DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7662,11 +7642,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Legg til DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7674,20 +7654,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Legg til DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Spørringer som skal spores" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -7698,11 +7678,11 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL spørringssporingstabell" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7710,11 +7690,11 @@ msgstr "" "Om sporingsmekanismen oppretter versjoner for tabeller og visninger " "automatisk." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Automatisk opprette versjoner" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]" @@ -7724,37 +7704,37 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabell for lagring av brukerpreferanser" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Bruk tabeller" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Vis vert tabell" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]" @@ -7764,15 +7744,15 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Bruker for config autentisering" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7780,21 +7760,21 @@ msgstr "" "En brukervennlig beskrivelse av denne tjeneren. La stå tom for visning av " "vertsnavn istedet." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Fult navn for denne tjeneren" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Tillat visning av alle rader" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy #| msgid "" #| "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -7810,75 +7790,75 @@ msgstr "" "autentiseringsmodus siden passordet er hardkodet i konfigurasjonsfila; dette " "begrenser ikke muligheten til å utføre samme kommando direkte" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Vis passordendringsskjema" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Vis opprett database skjema" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show versions" msgid "Show Creation timestamp" msgstr "Vis versjoner" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy #| msgid "Show master status" msgid "Show Last check timestamp" msgstr "Vis masterstatus" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Vis felttyper" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Vis funksjonsfelter" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, 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:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Vis hint" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7890,15 +7870,15 @@ msgstr "" "Vis link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "resultat" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Vis phpinfo() link" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Vis detaljert MySQL tjenerinformasjon" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -7906,32 +7886,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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Vis SQL spørringer" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" msgstr "Skjul spørringsboks" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Vis statistikk" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy #| msgid "" #| "Mark used tables and make it possible to show databases with locked tables" @@ -7940,21 +7920,21 @@ msgid "" msgstr "" "Merk tabeller i bruk og gjør det mulig å vise databaser med låste tabeller" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Ignorer låste tabeller" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 #, fuzzy #| msgid "A warning is displayed on the main page if Suhosin is detected" msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "En advarsel vises på hovedsiden dersom Suhosin er oppdaget" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7968,65 +7948,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:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Innloggings cookie gyldighet" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR textarea kolonner" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR textarea rader" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 #, 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:784 +#: libraries/config/messages.inc.php:786 #, 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Forvalgt tittel" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 #, 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:788 +#: libraries/config/messages.inc.php:790 #, 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:790 +#: libraries/config/messages.inc.php:792 #, fuzzy #| msgid "" #| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following " @@ -8044,56 +8024,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste over godkjente mellomlager for IP allow/deny" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Opplastingsmappe" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, 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:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Bruk databasesøk" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Sjekk for siste versjon" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -8101,34 +8081,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "Brukernavn" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Passord" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -8140,53 +8120,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "Tjenerport" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8210,46 +8190,46 @@ msgstr "HTTP autentisering" msgid "Signon authentication" msgstr "Rekkefølge for vertsautentisering" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV med LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Open Document regneark" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Rask" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Egendefinert" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Databaseeksportinnstillinger" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV for MS Excel data" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8499,20 +8479,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Intet passord" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Passord:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8659,8 +8639,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke " "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " @@ -9234,8 +9214,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9740,7 +9720,7 @@ msgstr "Logg ut" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-Dokumentasjon" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -10426,8 +10406,8 @@ msgstr "Velkommen til %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør " "kanskje bruke %1$ssetup script%2$s for å opprette en." @@ -10684,7 +10664,7 @@ msgstr "Sett inn kolonnenavn i første rad" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11767,7 +11747,7 @@ msgstr "" "Hvis ikke, legg til følgende linje i [mysqld] seksjonen:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11775,16 +11755,16 @@ msgstr "Brukernavn" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Brukernavn" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Passord" @@ -11814,10 +11794,10 @@ msgstr "Tjener ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Vert" @@ -11831,40 +11811,40 @@ msgstr "" "lista." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Alle verter" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Denne vert" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Alle brukere" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Bruk tekstfelt" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Vis vert tabell" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11873,7 +11853,7 @@ msgstr "" "vertstabellen blir brukt istedet." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Gjenta" @@ -12721,7 +12701,7 @@ msgstr "Ingen" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12790,14 +12770,14 @@ msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12808,7 +12788,7 @@ msgid "Administration" msgstr "Administrasjon" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globale privilegier" @@ -12819,7 +12799,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" @@ -12838,274 +12818,274 @@ msgstr "" "Tillater å legge til brukere og privilegier uten å oppfriske " "privilegietabellene." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Innlogingsinformasjon" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Bruk tekstfelt" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Ikke endre passordet" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Passordet til %s er endret." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har fjernet privilegiene til %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Legg til bruker" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Brukerdatabase" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Opprett database med samme navn og gi alle rettigheter." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Gi alle privilegier for databasen \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Brukere som har adgang til \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Visningen %s har blitt slettet" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Bruker" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Rettighet" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Ingen bruker(e) funnet." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Alle" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "databasespesifikk" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "jokertegn" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "databasespesifikk" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Rediger privilegier" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Tilbakekall" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Rediger tjener" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… behold den gamle." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… slett den gamle fra brukertabellene." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Opprett ny bruker med de samme privilegier og …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Legg til privilegier til følgende database" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Legg til privilegier til følgende tabell" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Fjern valgte brukere" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Slett databasene som har det samme navnet som brukerne." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Ingen brukere merket for sletting!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Oppfrisker privilegiene" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "De valgte brukerne har blitt slettet." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har oppdatert privilegiene til %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Brukeren %s finnes fra før!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegier" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Rediger privilegier" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Brukeroversikt" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL " "privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de " "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." @@ -15054,23 +15034,23 @@ msgstr "Indeksmellomlagerstørrelse" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indekstype :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Bruker:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Kommentar" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -16158,8 +16138,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -16294,8 +16274,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -17523,8 +17503,8 @@ msgstr "concurrent_insert er satt til 0" #~ "For a list of available transformation options and their MIME type " #~ "transformations, click on %stransformation descriptions%s" #~ msgstr "" -#~ "For en liste over tilgjengelige transformasjonsvalg, klikk på %" -#~ "stransformasjonsbeskrivelser%s" +#~ "For en liste over tilgjengelige transformasjonsvalg, klikk på " +#~ "%stransformasjonsbeskrivelser%s" #~ msgid "SQL command to fetch available databases" #~ msgstr "SQL kommando for å hente liste over databaser" @@ -18009,8 +17989,8 @@ msgstr "concurrent_insert er satt til 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen %" -#~ "s?" +#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen " +#~ "%s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/ne.po b/po/ne.po index 7fb255575d..60518267b6 100644 --- a/po/ne.po +++ b/po/ne.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-08-26 15:28+0200\n" "Last-Translator: Nabin Ghimire \n" "Language-Team: Nepali \n" +"Language: ne\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ne\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.10-dev\n" @@ -72,7 +72,7 @@ msgstr "टेबलको टिप्पणीहरु:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -96,7 +96,7 @@ msgstr "स्तम्भ" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -152,8 +152,8 @@ msgid "Links to" msgstr "संग सम्बन्धित छ" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -182,13 +182,13 @@ msgstr "प्राथमिक" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -211,13 +211,13 @@ msgstr "छैन" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -266,14 +266,14 @@ msgid "" msgstr "phpMyAdmin कन्फिगरेसन भण्डारण निष्क्रिय भएको छ। %s किन हो जान्नुहोस %s ।" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "टेबल" @@ -286,7 +286,7 @@ msgid "Rows" msgstr "पङ्क्तिहरू" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "आकार" @@ -374,9 +374,9 @@ msgstr "स्थिति" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -576,15 +576,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -615,8 +615,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -688,7 +688,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -709,7 +709,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -784,7 +784,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -1014,7 +1014,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1041,7 +1041,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1070,12 +1070,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1272,7 +1272,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1543,7 +1543,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1754,7 +1754,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1994,7 +1994,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2163,7 +2163,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2255,7 +2255,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2742,16 +2742,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2866,7 +2866,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3240,8 +3240,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3276,6 +3276,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3291,12 +3292,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3483,7 +3484,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3498,11 +3499,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3518,7 +3519,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3544,9 +3545,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3606,9 +3607,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3716,7 +3717,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "" @@ -3787,7 +3788,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4128,14 +4129,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4383,7 +4384,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4395,7 +4396,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4506,13 +4507,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4899,7 +4900,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5253,70 +5254,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5326,60 +5335,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5388,586 +5397,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5975,1045 +5984,1045 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Favorites table" msgstr "%s टेबल" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7021,52 +7030,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7074,80 +7083,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7167,44 +7176,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7408,20 +7417,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7556,8 +7565,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8047,8 +8056,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8503,7 +8512,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9141,8 +9150,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9365,7 +9374,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10261,22 +10270,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10304,10 +10313,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10319,45 +10328,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11074,7 +11083,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11139,14 +11148,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11155,7 +11164,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11164,7 +11173,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11181,253 +11190,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13025,19 +13034,19 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -13986,8 +13995,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14105,8 +14114,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/nl.po b/po/nl.po index c16d4dadd9..a45e185e96 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-18 22:33+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" @@ -67,7 +67,7 @@ msgstr "Tabelopmerkingen:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Kolom" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Verwijst naar" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Primaire sleutel" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Nee" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -262,14 +262,14 @@ msgstr "" "De configuratie-opslag van phpMyAdmin is uitgeschakeld. %sOntdek waarom%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabel" @@ -282,7 +282,7 @@ msgid "Rows" msgstr "Rijen" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Grootte" @@ -372,9 +372,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -571,15 +571,15 @@ msgstr "Geometrie toevoegen" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -612,11 +612,11 @@ msgstr "Onvolledige parameters" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"U probeerde waarschijnlijk een bestand te uploaden dat te groot is. Zie %" -"sdocumentatie%s om deze limiet te omzeilen." +"U probeerde waarschijnlijk een bestand te uploaden dat te groot is. Zie " +"%sdocumentatie%s om deze limiet te omzeilen." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -705,7 +705,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Terug" @@ -728,7 +728,7 @@ msgid "General Settings" msgstr "Algemene instellingen" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Wachtwoord wijzigen" @@ -801,7 +801,7 @@ msgstr "Versie-informatie:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentatie" @@ -1056,7 +1056,7 @@ msgstr "Index toevoegen" msgid "Edit Index" msgstr "Index bewerken" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Voeg %s kolom(men) toe aan index" @@ -1083,7 +1083,7 @@ msgstr "U moet minstens één kolom toevoegen." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "SQL voorbeeld" @@ -1112,12 +1112,12 @@ msgstr "De hostnaam is leeg!" msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" @@ -1319,7 +1319,7 @@ msgstr "Voeg tenminste één variabele toe aan de reeks!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1613,7 +1613,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1827,7 +1827,7 @@ msgstr "SQL-queryveld tonen" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2082,7 +2082,7 @@ msgstr "Inhoud gegevenspunt" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Negeren" @@ -2263,7 +2263,7 @@ msgstr "Klik op het pijltje
om de zichtbaarheid van de kolom te wijzigen." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Toon alles" @@ -2363,7 +2363,7 @@ msgstr "Paneel verbergen" msgid "Show hidden navigation tree items." msgstr "Verborgen navigatieboom onderdelen weergeven." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Verbinden met hoofdpaneel" @@ -2869,16 +2869,16 @@ msgid "Delete" msgstr "Verwijderen" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2993,7 +2993,7 @@ msgid "During current session" msgstr "Tijdens de huidige sessie" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3372,8 +3372,8 @@ msgstr "Uw SQL-query is succesvol uitgevoerd." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." @@ -3409,6 +3409,7 @@ msgstr "Met geselecteerd:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3424,12 +3425,12 @@ msgstr "Veranderen" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3624,7 +3625,7 @@ msgstr "" "verwijderd." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3639,11 +3640,11 @@ msgstr "View" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3659,7 +3660,7 @@ msgstr "Structuur" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3685,9 +3686,9 @@ msgstr "Invoegen" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Rechten" @@ -3747,9 +3748,9 @@ msgid "Central columns" msgstr "Centrale kolommen" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Databases" @@ -3857,7 +3858,7 @@ msgid "Recent" msgstr "Onlangs" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Favoriete tabellen" @@ -3928,7 +3929,7 @@ msgstr "Sortering" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4291,17 +4292,17 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Een klein getal met variabele kommapositie, toegelaten waarden zijn -" -"3,402823466E+38 tot -1,175494351E-38, 0, en 1,175494351E-38 tot 3.402823466E" +"Een klein getal met variabele kommapositie, toegelaten waarden zijn " +"-3,402823466E+38 tot -1,175494351E-38, 0, en 1,175494351E-38 tot 3.402823466E" "+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Een getal met variabele kommapositie met dubbel nauwkeurigheid, toegelaten " @@ -4603,7 +4604,7 @@ msgstr "Maximale grootte: %s%s" msgid "MySQL said: " msgstr "MySQL meldt: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Verklaar SQL" @@ -4615,7 +4616,7 @@ msgstr "Uitleg SQL overslaan" msgid "Without PHP Code" msgstr "zonder PHP-code" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Genereer PHP-code" @@ -4726,13 +4727,13 @@ msgstr "Beschrijving" msgid "Use this value" msgstr "Gebruik deze waarde" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5134,7 +5135,7 @@ msgid "Set value: %s" msgstr "Waarde instellen op: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Standaard waarde herstellen" @@ -5278,8 +5279,8 @@ msgstr "" "U gebruikt het [kbd]config[/kbd]-authenticatietype en heeft de te gebruiken " "gebruikersnaam en wachtwoord hierbij opgegeven voor automatisch aanmelden. " "Dit is niet aanbevolen voor productiesystemen gezien iemand die het URL van " -"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype%" -"s [kbd]cookie[/kbd] of [kbd]http[/kbd]." +"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype" +"%s [kbd]cookie[/kbd] of [kbd]http[/kbd]." #: libraries/config/ServerConfigChecks.class.php:440 #, php-format @@ -5566,23 +5567,35 @@ msgstr "Het tabblad dat wordt getoond na het openen van een tabel." msgid "Default table tab" msgstr "Standaard tabel tabblad" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Aanhalingstekens (`) bij tabel- en kolomnamen gebruiken" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Aanhalingstekens (`) bij tabel- en kolomnamen gebruiken" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Of de tabelstructuur acties verborgen moeten worden." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Tabel structuur acties verbergen" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Toon een serveroverzicht als een lijst in plaats van een afrolmenu." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Toon servers als een lijst" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5590,11 +5603,11 @@ msgstr "" "Schakel arbeidsintensieve onderhoudstaken voor tabellen uit, zoals " "optimaliseren of herstellen van geselecteerde tabellen van een database." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Schakel onderhoud op meerdere tabellen uit" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5602,39 +5615,38 @@ msgstr "" "Stel hier het maximale aantal seconden in dat een script mag gebruiken om te " "worden uitgevoerd ([kbd]0[/kbd] voor geen limiet)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maximale uitvoertijd" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format -#| msgid "Add %s statement" msgid "Use %s statement" msgstr "Gebruik %s statement" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Opslaan als bestand" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Karakterset voor het bestand" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Opmaak" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compressie" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5644,60 +5656,60 @@ msgstr "Compressie" msgid "Put columns names in the first row" msgstr "Kolomnamen in de eerste rij plaatsen" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Kolommen ingesloten door" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Kolommen omgezet met wisselteken" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Vervang NULL door" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Verwijder CRLF-tekens uit kolommen" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Kolommen beëindigd met" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Regels beëindigd door" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel-editie" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Databasenaam-template" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Servernaam-template" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Tabelnaam-template" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5706,139 +5718,139 @@ msgstr "Tabelnaam-template" msgid "Dump table" msgstr "Exporteer tabel" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Tabeltitel toevoegen" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Tabeltitel" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Vervolgde tabeltitel" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Labelsleutel" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relaties" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Exportmethode" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Opslaan op server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Bestaand(e) bestand(en) overschrijven" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Bestandsnaam-template herinneren" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT-waarde toe" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Aanhalingstekens (`) bij tabel- en kolomnamen gebruiken" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL-compatibiliteitsmodus" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE opties:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Creatie/Update/Controleer datum" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Gebruik vertraagde inserts" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Controle op vreemde sleutels uitschakelen" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Views exporteren als tabellen" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Voeg %s toe" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Gebruik hexadecimaal voor BINARY & BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "'INSERT IGNORE' gebruiken" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Syntax voor insert-opdrachten" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maximale lengte van de gemaakte query" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Exporttype" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Sluit de export in een transactie" # UTC = Universal Time Zone, UTC laten staan. -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exporteertijd in UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" "Een beveiligde verbinding afdwingen tijdens het gebruik van phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "SSL-verbinding afdwingen" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5846,142 +5858,142 @@ msgstr "" "Sorteer volgorde van elementen in een vreemde sleutel-afrolmenu; [kbd]content" "[/kbd] is de gerefereerde data, [kbd]id[/kbd] is de sleutelwaarde." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Vreemde sleutel-afrolmenu sortering" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Een afrolmenu wordt gebruikt indien er minder items beschikbaar zijn." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Vreemde sleutel-limiet" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Verkennen-mode" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Aanpassen verkennen-mode." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Aanpassen standaard opties." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV-gegevens" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Ontwikkelaar" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Instellingen voor phpMyAdmin-ontwikkelaars." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Bewerkmodus" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Bewerkmodus aanpassen." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Export standaarden" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Aanpassen standaard exportopties." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Opties" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Algemeen" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Enkele veel gebruikte opties instellen." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importopties" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Aanpassen standaard importopties." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importeren / exporteren" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Aanpassen importeer- en exporteer-directories en compressie-opties." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Weergaveopties voor databases." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigatiepaneel" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Weergaveopties voor het navigatiepaneel." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servers" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Weergaveopties voor servers." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Weergaveopties voor tabellen." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Hoofdpaneel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Overige instellingen" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Instellingen die onder geen andere categorie passen." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Paginatitels" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5989,19 +6001,19 @@ msgstr "" "Browser titel balk tekst. Zie [doc@cfg_TitleTable]documentatie[/doc] voor " "bruikbare codes." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Query-venster" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Aanpassen query-venster opties" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Beveiliging" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6009,23 +6021,23 @@ msgstr "" "Bedenk dat phpMyAdmin enkel een gebruikersinterface is, en dat zijn " "functionaliteit MySQL niet beperkt." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Basisinstellingen" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Authenticatie" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Authenticatie-instellingen." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Serverconfiguratie" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6033,15 +6045,15 @@ msgstr "" "Geavanceerde serverinstellingen, wijzig deze alleen wanneer u de werking " "begrijpt." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Geef de serververbindingsparameters op." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Configuratie-opslag" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6051,11 +6063,11 @@ msgstr "" "extra functionaliteit, zie [doc@linked-tables]phpMyAdmin-configuratie-opslag" "[/doc] in de documentatie." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Wijzigingen bijhouden" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6063,109 +6075,109 @@ msgstr "" "Bijhouden van wijzigingen in de database. Dit vereist de configuratie-opslag " "van phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Exportopties aanpassen" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Aanpassen importeer standaarden" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Aanpassen navigatiepaneel" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Aanpassen hoofdpaneel" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL-query's" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL-queryveld" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Aanpassen van links getoond in de SQL-query vensters." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL-query instellingen." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Beginpagina" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Aanpassen beginpagina." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Databasestructuur" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Kies de details die getoond worden in de databasestructuur (lijst met " "tabellen)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Tabelstructuur" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Instellingen voor de tabelstructuur (lijst met kolommen)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Tabbladen" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Kies hoe de tabbladen moeten werken." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Toon relationeel schema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Papierformaat" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Tekstvelden" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Invoertekstvelden aanpassen." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Aanpassen standaard opties" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Waarschuwingen" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Schakel enkele waarschuwingen uit die getoond worden door phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6173,15 +6185,15 @@ msgstr "" "Gebruik [a@http://nl.wikipedia.org/wiki/Gzip]gzip[/a] compressie voor " "import- en exportbewerkingen." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Extra parameters voor iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6189,11 +6201,11 @@ msgstr "" "Indien ingeschakeld gaat phpMyAdmin door met het uitvoeren van query's zelfs " "als een query uit een meervoudige opdracht een fout oplevert." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Negeer foutmeldingen bij meervoudige statements" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6203,28 +6215,27 @@ msgstr "" "tijdslimiet nadert. Dit kan nuttig zijn bij het importeren van grote " "bestanden, maar kan transacties verstoren." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Gedeeltelijke import: onderbreken toestaan" -#: libraries/config/messages.inc.php:336 -#| msgid "Disable foreign key checks" +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" "Tijdelijk de controle op externe sleutels uitschakelen tijdens importeren" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Breek een handeling niet af bij een INSERT-fout" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Vervang tabelgegevens door het bestand" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6232,69 +6243,69 @@ msgstr "" "Standaard formaat; deze lijst is afhankelijk van de locatie (database, " "tabel), enkel SQL is altijd beschikbaar." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formaat van het geïmporteerde bestand" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Gebruik het LOCAL sleutelwoord" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Kolomnamen in eerste rij" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Lege rijen niet importeren" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Valuta importeren ($5.00 naar 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Percentages als decimalen importeren (12.00% naar .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Aantal query's die moeten worden overgeslagen in het begin." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Gedeeltelijke import: query's overslaan" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Gebruik geen AUTO_INCREMENT voor 0-waarden" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Initiële toestand van schuif-indexen" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Hoeveel rijen gelijktijdig kunnen worden ingevoegd." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Aantal ingevoegde rijen" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Maximaal aantal karakters dat wordt getoond in een niet-numerieke kolom bij " "het bekijken van queryresultaten." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Beperk aantal tekens in een kolom" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6305,11 +6316,11 @@ msgstr "" "meerdere servers wordt gewerkt en dit niet is ingeschakeld kan het snel " "gebeuren dat u vergeet om af te melden voor een van de servers." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Alle cookies verwijderen bij het afmelden" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6317,11 +6328,11 @@ msgstr "" "Geeft aan of de laatst gebruikte gebruikersnaam moet worden herinnerd " "wanneer u geen gebruik maakt van de [kbd]cookie[/kbd] authenticatiemethode." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Gebruikersnaam herinneren" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6333,49 +6344,49 @@ msgstr "" "van de huidige sessie bewaard, en vervalt wanneer de browser wordt " "afgesloten. Dit is aan te raden voor niet-vertrouwde omgevingen." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Opslag voor aanmeldingscookie" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Definieer hoelang (in seconden) een aanmeldingscookie geldig blijft." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Geldigheid aanmeldingscookie" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Dubbele grootte van tekstveld voor LONGTEXT-kolommen." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Groter tekstveld voor LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" "Maximaal aantal karakters dat wordt gebruikt bij het tonen van een SQL-query." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Maximaal getoonde SQL-lengte" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Gebruiker kan geen hogere waarde instellen" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Maximum aantal databases dat getoond wordt in de databaselijst." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Maximum aantal databases" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6383,22 +6394,22 @@ msgstr "" "Het aantal elementen dat getoond wordt op iedere pagina op het eerste niveau " "van de navigatieboom." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Maximum elementen op het eerste niveau" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" "Het aantal elementen dat getoond wordt op iedere pagina van de navigatieboom." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Maximum elementen in tak" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6407,19 +6418,19 @@ msgstr "" "resultatenset. Indien de resultatenset meer rijen bevat worden de links " "\"Volgende\" en \"Vorige\" getoond." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Maximum aantal te tonen rijen" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Het maximum aantal tabellen dat wordt getoond in de tabellenlijst." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maximum aantal tabellen" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6427,41 +6438,41 @@ msgstr "" "Het aantal bytes aan geheugen dat een script maximaal mag gebruiken, " "bijvoorbeeld [kbd]32M[/kbd] ([kbd]0[/kbd] voor geen limiet)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Geheugenlimiet" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" "In het navigatiepanel, vervang de database boomstructuur door een selectie" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Geef databases navigatiescherm weer als boomstructuur" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Koppelen met hoofdpaneel door de huidige database of tabel te markeren." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Toon logo in navigatiepaneel." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Toon logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL waar het logo in het navigatiepaneel naar doorverwijst." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL voor de link van het logo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6469,27 +6480,27 @@ msgstr "" "Open de pagina in het hoofdvenster ([kbd]main[/kbd]) of in een nieuw venster " "([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Linkbestemming van logo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Toon serverkeuze bovenaan het navigatiepaneel." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Toon serverkeuze" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Doel van snel-icoon" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Doel van de tweede snelle toegang pictogram" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6497,15 +6508,15 @@ msgstr "" "Het minimale aantal elementen (tabellen, views, routines en evenementen) " "waarbij een filterveld wordt getoond." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Minimale aantal elementen waarbij een filterveld wordt getoond" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Minimale aantal databases waarbij een filterveld wordt getoond" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6513,100 +6524,100 @@ msgstr "" "Groepeer elementen in een boomstructuur (scheidingsteken zoals hieronder " "aangegeven)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Groepeer elementen in de boomstructuur" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Tekenreeks die databasenamen opsplitst in verschillende niveaus." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Scheidingsteken database boomstructuur" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Tekenreeks die tabelnamen opsplitst in verschillende niveaus." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Scheidingsteken tabelboomstructuur" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maximum diepte tabelboomstructuur" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Server onder de muispijl markeren." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Markeren inschakelen" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" "Of uitklappen van de boomstructuur aangeboden mag worden in het " "navigatiepaneel." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Uitklappen van de navigatiestructuur inschakelen" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Het maximum aantal recent gebruikte tabellen dat wordt getoond; vul 0 in om " "uit te schakelen." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "Het maximum aantal favoriete tabellen dat wordt getoond; vul 0 in om uit te " "schakelen." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Recent gebruikte tabellen" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Dit zijn de links Bewerken, Kopiëren en Verwijderen." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Waar de tabelregellinks getoond worden" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Natuurlijke volgorde" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Gebruik enkel iconen, enkel tekst of beide." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Navigatiebalk voor tabellen" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip-uitvoerbuffering" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6614,19 +6625,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Standaard sorteervolgorde" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Gebruik persistente verbindingen voor MySQL-databases." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Persistente verbindingen" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6636,11 +6647,11 @@ msgstr "" "databasedetails Structuur wanneer een benodigde tabel voor de configuratie-" "opslag van phpMyAdmin niet gevonden kan worden." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tabellen voor de configuratie-opslag van phpMyAdmin ontbreken" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6648,11 +6659,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Waarschuwing verschil server/bibliotheek" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6660,27 +6671,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "MySQL gereserveerde woorden waarschuwing" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Hoe de menu-tabs te tonen" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Hoe de verschillende acties te tonen" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Blokkeer het bewerken van 'BLOB'- en 'BINARY'-kolommen." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Binaire kolommen beschermen" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6691,107 +6702,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Permanente querygeschiedenis" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Hoeveel query's er worden bewaard in de geschiedenis." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Lengte querygeschiedenis" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Hercoderingsengine" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "De tabelsortering onthouden" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "Standaard sorteervolgorde voor tabellen met een primaire sleutel." -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Standaard sorteervolgorde voor primaire sleutels" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Kopregels herhalen" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Rasterbewerken: trigger actie" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Relationele weergave" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Voor weergaveopties" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Roosterbewerkingen : Alle wijzigingen aan cellen tegelijk opslaan" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Map op de server waar exports kunnen worden opgeslagen." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Opslagmap" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Laat dit veld leeg indien u het niet wenst te gebruiken." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Volgorde hostautorisatie" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Laat dit veld leeg om de standaardwaarde te gebruiken." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Regels hostautorisatie" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Aanmelden zonder wachtwoord toestaan" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Aanmelden als root toestaan" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Sessie tijdzone" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" @@ -6799,15 +6810,15 @@ msgstr "" "Stel de gebruikte tijdzone in; mogelijk is dat een andere dan die van je " "database server" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6817,19 +6828,19 @@ msgstr "" "hardware-authenticatie[/a] (niet binnen de documentrootmap van uw webserver; " "suggestie: /etc/swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey-configuratiebestand" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Authenticatiemethode." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Authenticatietype" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6837,11 +6848,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Bladwijzertabel" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6849,31 +6860,31 @@ msgstr "" "Laat dit veld leeg om geen kolomopmerkingen en mimetypes te ondersteunen, " "suggestie: [kbd]pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabel voor kolominformatie" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Comprimeer verbinding naar de MySQL-server." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Comprimeer verbinding" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Verbindingstype" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Controle gebruikerswachtwoord" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6881,11 +6892,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Controle gebruiker" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6893,11 +6904,11 @@ msgstr "" "Een alternatieve host voor de configuratie-opslag; laat leeg om de reeds " "gedefinieerde host te gebruiken." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Controlehost" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6907,17 +6918,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Controlepoort" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" "Verberg databases die aan de hier opgegeven reguliere expressie (PCRE) " "voldoen." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6925,15 +6936,15 @@ msgstr "" "Zie voor meer informatie: [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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Geen gebruik maken van INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Verberg databases" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6941,23 +6952,23 @@ msgstr "" "Laat dit veld leeg om SQL-geschiedenis niet te ondersteunen, suggestie: [kbd]" "pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabel voor SQL-querygeschiedenis" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Hostnaam waar de MySQL-server bereikbaar is." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Serverhostnaam" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL voor afmelden" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6965,15 +6976,15 @@ msgstr "" "Beperkt het aantal tabelvoorkeuren die opgeslagen zijn in de database, de " "oudste worden automatisch verwijderd." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Het maximum aantal tabelvoorkeuren die opgeslagen worden" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Tabel met opgeslagen opzoekingen van 'Query door voorbeeld'" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6981,11 +6992,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:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Centrale kolommen tabel" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -6993,15 +7004,15 @@ msgstr "" "Laat dit veld leeg om centrale kolommen tabel niet te ondersteunen, " "suggestie: [kbd]pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Probeer te verbinden zonder wachtwoord." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Verbinden zonder wachtwoord" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7011,31 +7022,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Toon enkel de opgesomde databases" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Wachtwoord voor 'config'-authenticatie" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF-schema: pagina's tabel" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7046,22 +7057,22 @@ msgstr "" "informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: [kbd]" "phpmyadmin[/kbd]." -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Databasenaam" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Serverpoort" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7069,11 +7080,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Recent gebruikte tabel" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7081,11 +7092,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Favorieten tabel" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7093,11 +7104,11 @@ msgstr "" "Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/relation]" "relation-links[/a] te ondersteunen, suggestie: [kbd]pma__relation[/kbd]." -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relatietabel" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7105,33 +7116,33 @@ msgstr "" "Zie [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authenticatietypes[/" "a] voor een voorbeeld." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Signon-sessienaam" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Signon-URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Serversocket" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "SSL inschakelen voor de verbinding naar de MySQL-server." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL gebruiken" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7139,11 +7150,11 @@ msgstr "" "Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Ontwerper en PDF-schema: tabelcoördinaten" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7151,11 +7162,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Tabel met kolomomschrijvingen" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7163,11 +7174,11 @@ msgstr "" "Laat dit veld leeg om interfacevoorkeuren niet \"persistent\" op te slaan, " "suggestie: [kbd]pma__table_uiprefs[/kbd]." -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabel voor interfacevoorkeuren" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7175,11 +7186,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "DROP DATABASE toevoegen" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7187,12 +7198,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "DROP TABLE toevoegen" # "statement" hier vertalen is geen goed idee. -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7200,21 +7211,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "DROP VIEW toevoegen" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Bij te houden opdrachten" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7222,11 +7233,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:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL-query-opvolgingstabel" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7234,11 +7245,11 @@ msgstr "" "Of het opvolgsysteem versies voor tabellen en weergaven automatisch aanmaakt " "of niet." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Automatisch versies aanmaken" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7246,11 +7257,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Opslagtabel voor gebruikersvoorkeuren" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7261,11 +7272,11 @@ msgstr "" "beide leeg laat wordt deze functie uitgeschakeld, suggestie: [kbd]pma__users" "[/kbd]." -#: libraries/config/messages.inc.php:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Gebruikerstabel" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7275,11 +7286,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Gebruikersgroepentabel" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7287,15 +7298,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Tabel met verborgen navigatieonderdelen" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Gebruiker voor 'config'-authenticatie" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7303,20 +7314,20 @@ msgstr "" "Een gebruiksvriendelijke naam voor deze server. Laat dit veld leeg om de " "hostnaam te tonen." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Uitgebreide naam voor deze server" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Toon alle rijen" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7327,46 +7338,46 @@ msgstr "" "configuratiebestand staat opgeslagen; dit beperkt echter niet de " "mogelijkheid om de bijbehorende SQL-opdracht handmatig uit te voeren." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Toon formulier voor wachtwoord wijzigen" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Toon formulier om een nieuwe database aan te maken" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Toon het tijdstip van aanmaken" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Toon het tijdstip van laatste aanpassing" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Toon het tijdstip van laatste controle" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7374,27 +7385,27 @@ msgstr "" "Definieert of type velden initieel getoond worden in de modus bewerken/" "toevoegen." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Toon veldtypes" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Toon de functievelden tijdens het wijzigen/invoegen." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Toon functievelden" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Of een hint getoond wordt of niet." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Toon hint" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7402,66 +7413,66 @@ msgstr "" "Toon link naar de uitvoer van [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Toon link naar phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Toon gedetailleerde MySQL-serverinformatie" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Toon SQL-query's" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Queryveld behouden" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Toon statistieken" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Herken vergrendelde tabellen" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" "Een waarschuwing wordt getoond op de hoofdpagina als Suhosin gedetecteerd " "wordt." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin-waarschuwing" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7471,11 +7482,11 @@ msgstr "" "waarde van de PHP instelling 'session.gc_maxlifetime' lager is dan de waarde " "van 'LoginCookieValidity'." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Waarschuwing geldigheid inlog-cookie" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7483,11 +7494,11 @@ msgstr "" "Tekstveldgrootte (kolommen) in bewerkmodus, deze waarde wordt benadrukt " "weergegeven voor SQL-querytekstvelden (*2) en voor het queryscherm (*1.25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Tekstveldkolommen" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7495,31 +7506,31 @@ msgstr "" "Tekstveldgrootte (rijen) in bewerkmodus, deze waarde wordt benadrukt " "weergegeven voor SQL-querytekstvelden (*2) en voor het queryscherm (*1.25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Tekstveldregels" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Titel van het browserscherm wanneer niets geselecteerd is." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Standaard titel" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7531,27 +7542,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Lijst van vertrouwde proxyservers" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Uploadmap" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Toestaan om te zoeken binnen de volledige database." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Databasezoekfunctie gebruiken" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7559,28 +7570,28 @@ msgstr "" "Wanneer uitgeschakeld, kunnen gebruikers geen van de opties onderaan " "wijzigen, onafhankelijk van het aanvinkveld aan de rechterkant." -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Schakel het ontwikkelaarstabblad in bij instellingen" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Controleren op de meest recente versie" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7593,11 +7604,11 @@ msgstr "" "geïnstalleerd is geen directe toegang tot het internet heeft. Het formaat " "is: \"servernaam:poortnummer\"." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Proxy url" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7608,19 +7619,19 @@ msgstr "" "basisverificatie uitgevoerd. Andere types verificatie worden momenteel niet " "ondersteund." -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Proxy gebruikersnaam" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Het wachtwoord voor de authenticatie met de proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Proxy wachtwoord" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7628,35 +7639,35 @@ msgstr "" "Gebruik [a@http://nl.wikipedia.org/wiki/ZIP_(bestandstype)]ZIP[/a]-" "compressie voor import- en exportoperaties." -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Openbare sleutel voor reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Private sleutel voor reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "Kies de standaard actie bij het verzenden van foutmeldingsverslagen." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Verzend foutmeldingsverslagen" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." @@ -7664,11 +7675,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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "De Enter toets voert queries uit in de console" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7676,7 +7687,7 @@ msgstr "" "Schakel 'Zonder configuratie'-modus in om phpMyAdmin " "configuratieopslagtabellen automatisch in te stellen." -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "'Zonder configuratie'-modus inschakelen" @@ -7696,44 +7707,44 @@ msgstr "HTTP-authenticatie" msgid "Signon authentication" msgstr "Signon-authenticatie" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV met behulp van LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "OpenDocument-rekenblad" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Snel" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Aangepast" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Databaseexportopties" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV voor MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument Tekst" @@ -7815,7 +7826,6 @@ msgid "New page" msgstr "Nieuwe pagina" #: libraries/db_designer.lib.php:297 libraries/db_designer.lib.php:300 -#| msgid "Save page" msgid "Save page as" msgstr "Pagina opslaan als" @@ -7942,20 +7952,20 @@ msgstr "Kan geen rijen tellen in een ongebufferde resultatenreeks" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Geen wachtwoord" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Wachtwoord:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Tik opnieuw in:" @@ -8096,13 +8106,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabelnaam" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het " "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " -"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5" -"$s voor meer details." +"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ" +"%5$s voor meer details." #: libraries/display_export.lib.php:526 msgid "use this for future exports" @@ -8266,12 +8276,10 @@ msgstr "" "beginnend bij de eerste :" #: libraries/display_import.lib.php:332 -#| msgid "Options" msgid "Other Options:" msgstr "Andere opties:" #: libraries/display_import.lib.php:338 -#| msgid "Disable foreign key checks" msgid "Disable foreign key check" msgstr "Controle op externe sleutel uitschakelen" @@ -8660,11 +8668,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Documentatie en meer informatie over PBXT kan gevonden worden op de %" -"sPrimeBase XT home pagina%s." +"Documentatie en meer informatie over PBXT kan gevonden worden op de " +"%sPrimeBase XT home pagina%s." #: libraries/engines/pbxt.lib.php:138 msgid "Related Links" @@ -9133,7 +9141,7 @@ msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-documentatie" # Zowel "frame" als "window" vertalen naar "venster". -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Navigatiepaneel herladen" @@ -9830,8 +9838,8 @@ msgstr "Welkom bij %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u " "%1$ssetup script%2$s gebruiken om een te maken." @@ -10062,7 +10070,7 @@ msgstr "Kolomnamen in de eerste regel plaatsen:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Host:" @@ -11080,22 +11088,22 @@ msgstr "" "aan de sectie [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Gebruikersnaam:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Gebruikersnaam" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Wachtwoord" @@ -11123,10 +11131,10 @@ msgstr "Server-ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -11140,38 +11148,38 @@ msgstr "" "deze lijst." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Elke host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "lokaal" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Deze host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Elke gebruiker" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Tekstveld gebruiken:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Gebruik hosttabel" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11180,7 +11188,7 @@ msgstr "" "toepassing." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Type opnieuw" @@ -11920,7 +11928,7 @@ msgstr "Geen" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Gebruikersgroep" @@ -11996,14 +12004,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Tabel-specifieke rechten" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" "Opmerking: de namen van de MySQL-rechten zijn uitgedrukt in het Engels." @@ -12013,7 +12021,7 @@ msgid "Administration" msgstr "Administratie" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globale rechten" @@ -12022,7 +12030,7 @@ msgid "Global" msgstr "Globaal" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Database-specifieke rechten" @@ -12041,18 +12049,18 @@ msgstr "" "Maakt het mogelijk om gebruikers en rechten toe te voegen zonder de " "rechtentabel opnieuw op te vragen." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Aanmeldingsinformatie" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Tekstveld gebruiken" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12060,126 +12068,126 @@ msgstr "" "Er bestaat al een account met dezelfde gebruikersnaam maar mogelijk met een " "andere hostnaam." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Wijzig het wachtwoord niet" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Het wachtwoord voor %s is succesvol veranderd." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "U heeft de rechten ingetrokken voor %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Gebruiker toevoegen" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Database voor gebruiker" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Een database aanmaken met dezelfde naam en alle rechten hierop geven." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Alle rechten geven op de wildcardnaam (gebruikersnaam\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Alle rechten geven op database \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Gebruikers die toegang hebben tot \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Gebruiker is toegevoegd." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Gebruiker" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Toekennen" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Niet genoeg rechten om gebruikers in te zien." # Enkelvoud. -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Geen gebruiker gevonden." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Elke" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globaal" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "database-specifiek" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "jokerteken" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "tabel-specifiek" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Rechten bewerken" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Ongedaan maken" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Gebruikersgroep bewerken" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… de oude behouden." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… de oude verwijderen van de gebruikerstabellen." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… alle actieve rechten van de oude intrekken en deze daarna verwijderen." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12187,93 +12195,93 @@ msgstr "" "… de oude verwijderen van de gebruikerstabellen en de rechten nadien " "vernieuwen." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Aanmeldingsinformatie wijzigen / Gebruiker kopiëren" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Een nieuwe gebruiker aanmaken met dezelfde rechten en …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Kolom-specifieke rechten" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Rechten toevoegen op de volgende database(s):" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Wildcards _ en % moeten worden voorafgegaan door een \\ om ze letterlijk te " "gebruiken." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Rechten toevoegen op de volgende tabel:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "De geselecteerde gebruikers verwijderen" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Trek alle actieve rechten in van alle gebruikers en verwijder deze daarna." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Geen gebruikers geselecteerd om te verwijderen!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "De rechten werden opnieuw ingeladen" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "De geselecteerde gebruikers zijn met succes verwijderd." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "U heeft de rechten aangepast voor %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Verwijderen van %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "De rechten werden succesvol opnieuw ingeladen." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "De gebruiker %s bestaat al!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Rechten voor %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nieuw" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Rechten bewerken:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12281,17 +12289,17 @@ msgstr "" "Opmerking: U probeert de rechten te wijzigen van de gebruikersnaam waarmee u " "op dit moment ingelogd bent." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Gebruikers overzicht" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL-" "privilegestabel. De inhoud van deze tabel kan verschillen met de rechten van " @@ -12299,11 +12307,11 @@ msgstr "" "geval zijn dan moet men %sde rechtentabel vernieuwen%s voordat men verder " "gaat." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." @@ -12496,8 +12504,8 @@ msgid "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" -"Het inschakelen van de general_log kan de serverbelasting verhogen met 5-" -"15%. Wees er ook bewust van dat het genereren van statistieken uit de " +"Het inschakelen van de general_log kan de serverbelasting verhogen met " +"5-15%. Wees er ook bewust van dat het genereren van statistieken uit de " "logboeken een belastende taak is, daarom is het aan te raden om alleen een " "kleine periode te selecteren, en de general_log uit te schakelen en de tabel " "te legen zodra het monitoren niet meer nodig is." @@ -13688,8 +13696,8 @@ msgid "" "May be approximate. Click on the number to get the exact count. See " "[doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -"Bij benadering. Klik op het getal voor de exacte hoeveelheid. Zie [doc@faq3-" -"11]FAQ 3.11[/doc]." +"Bij benadering. Klik op het getal voor de exacte hoeveelheid. Zie " +"[doc@faq3-11]FAQ 3.11[/doc]." #: libraries/structure.lib.php:862 libraries/structure.lib.php:2346 #: libraries/tbl_printview.lib.php:324 @@ -14111,19 +14119,19 @@ msgstr "Index keuze:" msgid "Key block size:" msgstr "Sleutelveld grootte:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indextype:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Lezer:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Opmerking:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Sleep om te herschikken" @@ -15165,8 +15173,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "De huidige verhouding van vrij querycachegeheugen tot de totale " "querycachegrootte is %s%%. Dit zou meer dan 80%% moeten zijn" @@ -15323,8 +15331,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% van alle sorteeracties veroorzaken tijdelijke tabellen, deze waarde zou " "lager moeten zijn dan 10%%." @@ -16490,8 +16498,8 @@ msgstr "concurrent_insert is ingesteld op 0" #~ "%s." #~ msgstr "" #~ "De SQL-validatie kon niet worden geïnitialiseerd. Controleer of u de " -#~ "nodige PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %" -#~ "sdocumentatie%s." +#~ "nodige PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de " +#~ "%sdocumentatie%s." #, fuzzy #~| msgid "Error: Relation not added." diff --git a/po/pa.po b/po/pa.po index f0e18b490e..eda8da6485 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-01-06 12:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Punjabi \n" +"Language: pa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pa\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -69,7 +69,7 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -265,14 +265,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "" @@ -285,7 +285,7 @@ msgid "Rows" msgstr "" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "" @@ -373,9 +373,9 @@ msgstr "" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -566,15 +566,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -605,8 +605,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -679,7 +679,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -700,7 +700,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -773,7 +773,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -993,7 +993,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1020,7 +1020,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1049,12 +1049,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1251,7 +1251,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1522,7 +1522,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1733,7 +1733,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1973,7 +1973,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2142,7 +2142,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" @@ -2238,7 +2238,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2721,16 +2721,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2845,7 +2845,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3225,8 +3225,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3261,6 +3261,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3276,12 +3277,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3468,7 +3469,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3483,11 +3484,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3503,7 +3504,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3529,9 +3530,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3591,9 +3592,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3701,7 +3702,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Show all" msgid "Favorite tables" @@ -3776,7 +3777,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4119,14 +4120,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4374,7 +4375,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4386,7 +4387,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4499,13 +4500,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4892,7 +4893,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5246,70 +5247,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5319,60 +5328,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5381,586 +5390,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5968,1048 +5977,1048 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show all" msgid "Show databases navigation as tree" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Show all" msgid "Enable navigation tree expansion" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Show all" msgid "Favorites table" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7017,52 +7026,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7070,80 +7079,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7163,44 +7172,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7406,20 +7415,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7554,8 +7563,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8045,8 +8054,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8501,7 +8510,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9141,8 +9150,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9365,7 +9374,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10273,22 +10282,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "ਵਰਤੋਂਕਾਰ ਦਾ ਨਾਂ" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10316,10 +10325,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10331,45 +10340,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11086,7 +11095,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11151,14 +11160,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11167,7 +11176,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11176,7 +11185,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11193,253 +11202,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13036,19 +13045,19 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -14001,8 +14010,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14120,8 +14129,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 8d009653bc..0691923cff 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,10 +8,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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -67,7 +68,7 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +92,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +148,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +178,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +207,13 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -261,14 +262,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "" @@ -281,7 +282,7 @@ msgid "Rows" msgstr "" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "" @@ -369,9 +370,9 @@ msgstr "" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -562,15 +563,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -601,8 +602,8 @@ msgstr "" #: import.php:163 #, possible-php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -674,7 +675,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -695,7 +696,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -768,7 +769,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -988,7 +989,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, possible-php-format msgid "Add %s column(s) to index" msgstr "" @@ -1015,7 +1016,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1044,12 +1045,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1246,7 +1247,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1517,7 +1518,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1728,7 +1729,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1968,7 +1969,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2137,7 +2138,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2229,7 +2230,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2712,16 +2713,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2836,7 +2837,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3210,8 +3211,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, possible-php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3246,6 +3247,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3261,12 +3263,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3453,7 +3455,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3468,11 +3470,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3488,7 +3490,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3514,9 +3516,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3576,9 +3578,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3686,7 +3688,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "" @@ -3757,7 +3759,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4098,14 +4100,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4353,7 +4355,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4365,7 +4367,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4476,13 +4478,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4869,7 +4871,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5223,70 +5225,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, possible-php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5296,60 +5306,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5358,586 +5368,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, possible-php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5945,1042 +5955,1042 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -6988,52 +6998,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7041,80 +7051,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7134,44 +7144,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7375,20 +7385,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7523,8 +7533,8 @@ msgstr "" #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8014,8 +8024,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, possible-php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8470,7 +8480,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9108,8 +9118,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, possible-php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9332,7 +9342,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10228,22 +10238,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10271,10 +10281,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10286,45 +10296,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11041,7 +11051,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11106,14 +11116,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11122,7 +11132,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11131,7 +11141,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11148,253 +11158,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, possible-php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, possible-php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, possible-php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, possible-php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, possible-php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, possible-php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, possible-php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, possible-php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, possible-php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -12987,19 +12997,19 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" diff --git a/po/pl.po b/po/pl.po index f8c1ddfd5d..3f4f3acf12 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-01-21 02:11+0200\n" "Last-Translator: Krystian Biesaga \n" "Language-Team: Polish \n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.2-dev\n" @@ -68,7 +68,7 @@ msgstr "Komentarze tabeli:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "Kolumna" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "Odsyłacze do" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "Podstawowy" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "Nie" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -264,14 +264,14 @@ msgstr "" "dlaczego, kliknij %stutaj%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabela" @@ -284,7 +284,7 @@ msgid "Rows" msgstr "Rekordy" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Rozmiar" @@ -378,9 +378,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -579,15 +579,15 @@ msgstr "Dodaj geometrię" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -620,8 +620,8 @@ msgstr "Niekompletne parametry" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Prawdopodobnie nastąpiła próba załadowania zbyt dużego pliku. Proszę " "zapoznać się %sdokumentacją%s, aby obejść to ograniczenie." @@ -706,7 +706,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Powrót" @@ -730,7 +730,7 @@ msgid "General Settings" msgstr "Ustawienia ogólne" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Zmień hasło" @@ -805,7 +805,7 @@ msgstr "Informacja o wersji:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentacja" @@ -944,8 +944,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%" -"s." +"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja" +"%s." #: js/messages.php:29 libraries/import.lib.php:125 sql.php:143 msgid "\"DROP DATABASE\" statements are disabled." @@ -1082,7 +1082,7 @@ msgstr "Dodaj indeks" msgid "Edit Index" msgstr "Edytuj indeks" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Dodaj %s kolumny do indeksu" @@ -1111,7 +1111,7 @@ msgstr "Musisz dodać co najmniej jedną kolumnę." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1140,12 +1140,12 @@ msgstr "Nazwa hosta jest pusta!" msgid "The user name is empty!" msgstr "Nazwa użytkownika jest pusta!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Hasło jest puste!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" @@ -1346,7 +1346,7 @@ msgstr "Dodaj co najmniej jedną zmienną do serii!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1639,7 +1639,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1850,7 +1850,7 @@ msgstr "Pokaż okno zapytań" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2102,7 +2102,7 @@ msgstr "Treść punktu danych" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignoruj" @@ -2276,7 +2276,7 @@ msgstr "Kliknij rozwijane strzałki,
aby przełączyć widoczność kolumn #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Pokaż wszystko" @@ -2376,7 +2376,7 @@ msgstr "Ukryj Panel" msgid "Show hidden navigation tree items." msgstr "Pokaż ukryte elementy drzewa nawigacji." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Połącz z głównym panelem" @@ -2877,16 +2877,16 @@ msgid "Delete" msgstr "Usuń" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3004,7 +3004,7 @@ msgid "During current session" msgstr "Podczas bieżącej sesji" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3384,8 +3384,8 @@ msgstr "Zapytanie SQL zostało wykonane pomyślnie." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ten widok ma przynajmniej taką liczbę wierszy (rekordów). Proszę odnieść się " "do %sdokumentacji%s." @@ -3422,6 +3422,7 @@ msgstr "Z zaznaczonymi:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3437,12 +3438,12 @@ msgstr "Zmień" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3635,7 +3636,7 @@ msgstr "" "usunięty." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Serwer" @@ -3650,11 +3651,11 @@ msgstr "Widok" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3670,7 +3671,7 @@ msgstr "Struktura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3696,9 +3697,9 @@ msgstr "Wstaw" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Uprawnienia" @@ -3758,9 +3759,9 @@ msgid "Central columns" msgstr "Centralne kolumny" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Bazy danych" @@ -3871,7 +3872,7 @@ msgid "Recent" msgstr "Ostatnie" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Tabele Ulubione" @@ -3942,7 +3943,7 @@ msgstr "Sortowanie" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4313,16 +4314,16 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Małe wartości zmiennoprzecinkowych numer, dopuszczalne są - 3.402823466E 38 " "do - 1.175494351E-38, 0 i 1.175494351E-38 do 3.402823466E 38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Podwójnej precyzji numer, dopuszczalne wartości zmiennoprzecinkowych są - " @@ -4617,7 +4618,7 @@ msgstr "Maksymalny rozmiar: %s%s" msgid "MySQL said: " msgstr "MySQL zwrócił komunikat: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Wyjaśnij SQL" @@ -4629,7 +4630,7 @@ msgstr "Pomiń wyjaśnienie SQL" msgid "Without PHP Code" msgstr "Bez kodu PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Utwórz kod PHP" @@ -4742,13 +4743,13 @@ msgstr "Opis" msgid "Use this value" msgstr "Użyj tej wartości" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5144,7 +5145,7 @@ msgid "Set value: %s" msgstr "Ustaw wartość: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Przywróć wartość domyślną" @@ -5241,8 +5242,8 @@ msgid "" "random session invalidation (currently session.gc_maxlifetime is %d)." msgstr "" "%sWażność ciasteczka logowania%s większa niż %ssession.gc_maxlifetime%s może " -"powodować losowe wygasanie sesji (aktualnie session.gc_maxlifetime wynosi %" -"d)." +"powodować losowe wygasanie sesji (aktualnie session.gc_maxlifetime wynosi " +"%d)." #: libraries/config/ServerConfigChecks.class.php:413 #, php-format @@ -5257,23 +5258,23 @@ msgstr "" #: libraries/config/ServerConfigChecks.class.php:419 #, fuzzy, php-format #| msgid "" -#| "If using cookie authentication and %sLogin cookie store%s is not 0, %" -#| "sLogin cookie validity%s must be set to a value less or equal to it." +#| "If using cookie authentication and %sLogin cookie store%s is not 0, " +#| "%sLogin cookie validity%s must be set to a value less or equal to it." msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." msgstr "" -"W przypadku korzystania z uwierzytelniania [kbd]cookie[/kbd] i %" -"Przechowalnia sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s " -"musi być ustawiona na wartość mniejsza lub równą jej." +"W przypadku korzystania z uwierzytelniania [kbd]cookie[/kbd] i " +"%Przechowalnia sciasteczek logowania%s nie jest 0, %sWażności plików cookie" +"%s musi być ustawiona na wartość mniejsza lub równą jej." #: libraries/config/ServerConfigChecks.class.php:426 #, fuzzy, php-format #| msgid "" -#| "If you feel this is necessary, use additional protection settings - %" -#| "shost authentication%s settings and %strusted proxies list%s. However, IP-" -#| "based protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#| "If you feel this is necessary, use additional protection settings - " +#| "%shost authentication%s settings and %strusted proxies list%s. However, " +#| "IP-based protection may not be reliable if your IP belongs to an ISP " +#| "where thousands of users, including you, are connected to." msgid "" "If you feel this is necessary, use additional protection settings - %shost " "authentication%s settings and %strusted proxies list%s. However, IP-based " @@ -5618,23 +5619,35 @@ msgstr "Zakładka, która jest wyświetlana po wejściu w tabelę." msgid "Default table tab" msgstr "Domyślna zakładka tabeli" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Użyj cudzysłowów z nazwami tabel i kolumn" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Użyj cudzysłowów z nazwami tabel i kolumn" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Czy działania struktury tabeli powinny być ukryte." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Ukryj działania struktury tabeli" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Pokaż wykaz serwerów jako listę zamiast listy rozwijanej." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Wyświetl serwery w postaci listy" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5642,11 +5655,11 @@ msgstr "" "Wyłącz konserwację tabeli masowych, takich jak optymalizacja i naprawy " "wybranych tabel bazy danych." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Wyłącz utrzymanie wielu tabeli" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5658,39 +5671,39 @@ msgstr "" "Jak długo (w sekundach) może trwać wykonywanie skryptu ([kbd]0[/kbd] oznacza " "brak limitu)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maksymalny czas wykonania" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Dodaj oświadczenie %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Zapisz jako plik" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Kodowanie znaków pliku" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Typ kompresji" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5700,64 +5713,64 @@ msgstr "Typ kompresji" msgid "Put columns names in the first row" msgstr "Umieść nazwy kolumn w pierwszym wierszu" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" msgstr "Kolumny dołączyć:" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" msgstr "Kolumna uciekła z:" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Zamień NULL na" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Usuń znaki nowej lini z kolumn" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Kolumny zakończone" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Linie zakończone z" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Wydanie Excela" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Nazwa schematu bazy danych" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Nazwa schematu serwera" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Nazwa szablonu tabeli" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5766,139 +5779,139 @@ msgstr "Nazwa szablonu tabeli" msgid "Dump table" msgstr "Zrzut tabeli" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Dołącz podpis tabeli" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Nagłówek tabeli" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Kontynuacja nagłówka tabeli" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Etykieta klucza" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Typ MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relacje" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Metoda eksportu" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Zapisz na serwerze" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Nadpisz istniejące pliki" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Zapamiętaj nazwę pliku szablonu" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartość AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Użyj cudzysłowów z nazwami tabel i kolumn" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Tryb zgodności SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Opcje UTWÓRZ TABELĘ:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Daty utworzenia/aktualizacji/sprawdzenia" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Użyj opóźnionych dodań" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Wyłącz sprawdzanie kluczy zewnętrznych" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Eksportuj widoki jako tabele" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Użyj liczb szesnastkowych dla BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Użyj ignorowanych dodań" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Składnia do użycia podczas wstawiania danych" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maksymalna długość utworzonego zapytania" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Rodzaj eksportu" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Obejmij eksport transakcją" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Eksportuj czas w UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Wymusza bezpiecznie połącznie podczas używania phpMyAdmina." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Wymuszaj połączenie SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -5910,142 +5923,142 @@ msgstr "" "Porządek sortowania pozycji w liście rozwijanej kluczy obcych; [kbd]content[/" "kbd] - dane referencyjne, [kbd]id[/kbd] - wartość klucza" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Porządek sortowania kluczy obcych" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Rozwijana będzie używana, jeśli mniej pozycji bedzie obecne." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Limit kluczy obcych" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Tryb przeglądania" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Dostosuj tryb przeglądania." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Dostosuj domyślne opcje." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Programista" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Ustawienia dla programistów phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Tryb edycji" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Dostosuj tryb edycji." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Domyślne opcje eksportu" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Dostosuj domyślne opcje eksportu." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funkcje" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Ogólne" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Ustawienie kilku najczęściej używanych opcji." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Domyślne opcje importu" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Dostosowanie domyślnych wspólnych opcji importu." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Import / eksport" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Ustaw katalogi importu i eksportu oraz opcje kompresji." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Opcje wyświetlania baz danych." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Panel nawigacyjny" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Dostosowanie wygląd panelu nawigacyjnego." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Serwery" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Opcje wyświetlania serwerów." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Opcje wyświetlania tabel." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Panel główny" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Inne kluczowe ustawienia" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Ustawienia, które nie pasują nigdzie indziej." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Tytuły stron" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6053,19 +6066,19 @@ msgstr "" "Określ tytuł. Przeczytaj szczegóły w [doc@cfg_TitleTable]dokumentacji[/doc], " "żeby dowiedzieć się więcej." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Okienko zapytania" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Dostosuj opcje okna zapytań" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Bezpieczeństwo" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6073,23 +6086,23 @@ msgstr "" "Należy pamiętać, że phpMyAdmin jest po prostu interfejsem użytkownika i jego " "funkcje nie ograniczają MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Ustawienia podstawowe" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Uwierzytelnienie" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Ustawienia uwierzytelnienia." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Konfiguracja serwera" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6097,15 +6110,15 @@ msgstr "" "Zaawansowane ustawienia serwera, nie zmieniaj ich, jeżeli nie jesteś pewien " "ich znaczenia." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Wprowadź parametry połączenia z serwerem." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Przechowywanie konfiguracji" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -6120,11 +6133,11 @@ msgstr "" "dodatkowych opcji, patrz [doc@linked-tables]przechowywanie konfiguracji " "phpMyAdmin[/doc] w dokumentacji" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Śledzenie zmian" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6132,109 +6145,109 @@ msgstr "" "Śledzenie zmian w bazie danych. Wymaga przechowywania konfiguracji " "phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Dostosowanie opcji eksportu" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Dostosowanie opcji importu" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Dostosuj panel nawigacji" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Dostosuj panel główny" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Zapytania SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Okno zapytania SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Dostosuj linki w polach kwerendy SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Ustawienia zapytań SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Uruchamianie" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Dostosuj stronę startową." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Struktura bazy danych" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Wybierz, które szczegóły, chcesz pokazać w strukturze bazy danych (lista " "tabel)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Struktura tabeli" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Ustawienia dla struktury tabeli (lista kolumn)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Zakładki" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Wybierz sposób działania zakładek." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Wyświetl schemat relacyjny" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Rozmiar papieru" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Pola tekstowe" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Dostosuj pola wprowadzania tekstu." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Tekst Texy!" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Dostosuj domyślne opcje" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Ostrzeżenia" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Wyłącz niektóre ostrzeżenia pokazywane przez phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6242,15 +6255,15 @@ msgstr "" "Włącza format kompresji [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] dla " "operacji importu i eksportu." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Dodatkowe parametry dla iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6259,11 +6272,11 @@ msgstr "" "składającego się z wielu instrukcji, nawet jeśli wykonanie którejś z nich " "nie udało się." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignoruj błędy w ciągu instrukcji" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6273,28 +6286,28 @@ msgstr "" "koniec limitu czasu. Może to być dobry sposób importu dużych plików, " "jednakże może on popsuć transakcje." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Import częściowy: pozwalaj przerwać" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Wyłącz sprawdzanie kluczy zewnętrznych" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Nie przerywaj w przypadku błędów WSTAWIANIA wierszy" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Zamiana danych tabeli z plikiem" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6306,70 +6319,70 @@ msgstr "" "Domyślny format oznacza, że ta lista zależy od położenia (bazy danych, " "tabeli) i tylko SQL jest zawsze dostępne" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Format importowanych plików" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Użyj słowa kluczowego LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "W pierwszym wierszu znajdują się nazwy kolumn" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Nie importuj pustych wierszy" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importuj walutę (zamienia $5.00 na 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" "Importuj procenty jako liczby podzielone przez 100 (zamienia 12.00% na .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Liczba zapytań, aby przejść od początku." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Import częściowy: pomiń zapytania" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nie używaj AUTO_INCREMENT dla wartości zerowych" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Początkowy stan pasków przesuwania" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Ile wierszy może być wstawianych w jednym czasie." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Liczba wstawianych wierszy" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Maksymalna liczba znaków pokazana w nie numerycznej kolumnie w widoku " "przeglądania." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Limit znaków w kolumnie" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6380,11 +6393,11 @@ msgstr "" "że gdy korzysta się z więcej niż jednego serwera, łatwo zapomnieć wylogować " "się z pozostałych." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Usuń wszystkie ciasteczka przy wylogowaniu" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6396,11 +6409,11 @@ msgstr "" "Określa, czy poprzedni login powinien być ponownie przywołany w trybie " "uwierzytelniania cookie, czy też nie." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Przypominaj nazwę użytkownika" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6413,50 +6426,50 @@ msgstr "" "przeglądarki. Takie rozwiązanie jest preferowane w środowisku niegodnym " "zaufania." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Przechowywania ciasteczka logowania" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Określ, jak długo (w sekundach) ważne będzie ciasteczko logowania." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Ważność ciasteczka logowania" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "Większe pole edycji dla pola LONGTEXT" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Większe pole edycji dla pola LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Maksymalna liczba znaków używana podczas wyświetlania zapytania SQL." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Maksymalna pokazywana długość SQL" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Użytkownicy nie mogą ustawić wyższej wartości" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Maksymalna liczba baz danych pokazywanych na liście baz danych." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Maksimum baz danych" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6464,11 +6477,11 @@ msgstr "" "Liczba elementów, które mogą być wyświetlane na każdej stronie na pierwszym " "poziomie drzewa nawigacji." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Maksymalnie elementy na pierwszym poziomie" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6476,11 +6489,11 @@ msgstr "" "Liczba elementów, które mogą być wyświetlane na każdej stronie drzewa " "nawigacji." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Maksymalnie pozycji w gałęzi" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6489,19 +6502,19 @@ msgstr "" "zestaw składa się z większej ilości wierszy, zostanie pokazany link " "Poprzednie/Następne." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Maksymalna liczba wierszy do wyświetlenia" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Maksymalna liczba tabel pokazywanych na liście tabel." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maksimum tabel" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6513,41 +6526,41 @@ msgstr "" "Ile pamięci może zaalokować skrypt, np. [kbd]32M[/kbd] ([kbd]0[/kbd] oznacza " "brak limitu)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Limit pamięci" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Pokaż ukryte elementy drzewa nawigacji." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Pokaż logo w panelu nawigacyjnym." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Wyświetl logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "Adres URL, gdzie logo w panelu nawigacyjnym wskaże." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Odnośnik URL do logo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -6559,29 +6572,29 @@ msgstr "" "Otwieraj stronę w tym samym oknie ([kbd]main[/kbd]) lub w nowym oknie ([kbd]" "new[/kbd])" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Cel odnośnika logo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Wyświetl wybór serwera w górnej części panelu nawigacyjnego." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Wyświetlaj wybór serwerów" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Cel dla ikony szybkiego dostępu" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Cel dla ikony szybkiego dostępu" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6589,15 +6602,15 @@ msgstr "" "Określa minimalną liczbę elementów (tabele, widoki, procedury i wydarzenia), " "aby wyświetlić okno filtra." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Minimalna liczba elementów wyświetlanych polu filtr" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Minimalna liczba baz danych, aby wyświetlić okno bazy danych filtra" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6605,98 +6618,98 @@ msgstr "" "Grupowanie elementów w drzewie nawigacji (określonej przez separator " "zdefiniowany poniżej)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Grupowanie elementów w drzewie" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Ciąg znaków, który oddziela bazy danych na różnych poziomach drzewa." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Separator struktury drzewa bazy danych" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Ciąg znaków, który oddziela tabele na różnych poziomach drzewa." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Separator poziomów tabeli" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maksymalny poziom zagłębienia tabeli" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Podświetl serwer pod kursorem myszy." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Włącz podświetlanie" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Czy wyłączyć możliwość rozbudowy bazy danych, czy też nie." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Pasek nawigacji tabeli" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Maksymalna liczba ostatnio używanych tabel; ustaw 0 aby wyłączyć." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Maksymalna liczba ulubionych tabel; ustaw 0 aby wyłączyć." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Ostatnio używane tabele" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "To są linki Edycja, Kopiuj i Usuń." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Gdzie wyświetlić linki wiersza tabeli" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Naturalny porządek" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Używaj tylko ikon, tylko tekstu lub obu." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Pasek nawigacji tabeli" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Kompresja wyjścia GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -6708,19 +6721,19 @@ msgstr "" "[kbd]SMART[/kbd] - tj. malejącej dla kolumny, wpisz DATE, DATETIME i " "TIMESTAMP, a rosnącej inaczej" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Domyślny porządek sortowania" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Użyj trwałych połączeń do baz danych MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Trwałe połączenia" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -6735,11 +6748,11 @@ msgstr "" "jeśli którekolwiek z tabel do przechowywania konfiguracji phpMyAdmin nie " "można znaleźć" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if a difference between the " @@ -6751,11 +6764,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Ostrzeżenie różnicy serwera/biblioteki" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -6767,29 +6780,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Jak wyświetlić menu zakładki" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Jak wyświetlić różne linki działania" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Chroń kolumny binarne" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6799,46 +6812,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Permanentna historia zapytań" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Ile zapytań ma być przechowywanych w historii." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Długość historii zapytań" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Konwersja silnika" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Zapamiętaj sortowanie tabel" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Domyślny porządek sortowania" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -6847,85 +6860,85 @@ msgid "" msgstr "" "Powtarzanie nagłówków każdej komórki X, [kbd]0[/kbd] wyłącza tę funkcję" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Powtórz nagłówki" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Montaż siatki: akcja wyzwalania" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Relacje wyświetlania kolumn" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Opcje wyświetlania serwerów." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Edytowanie siatki: zapisanie wszystkich zmodyfikowanych komórek naraz" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Katalog do zapisu" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Pozostaw puste, jeśli nie są używane." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Cel upoważnienia hosta" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Pozostaw puste, aby użyć wartości domyślnych." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Zasady autoryzacji hosta" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Pozwól na logowanie bez hasła" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Pozwól na logowanie się roota" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Wartość sesji" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -6940,19 +6953,19 @@ msgstr "" "SweKey[/a]. Relatywna ścieżka do głównego katalogu phpMyAdmin, np. ./swekey." "conf" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Plik konfiguracyjny SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Metoda uwierzytelniania w użyciu." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6960,11 +6973,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabela zakładek" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -6976,19 +6989,19 @@ msgstr "" "Pozostaw puste bez uwag typu kolumn/mime, zasugerował: [kbd]pma_column_info[/" "kbd]" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabela informacji o kolumnach" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Kompresja połączenia z serwerem MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Kompresja połączenia" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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." @@ -6996,15 +7009,15 @@ msgstr "" "Sposób połączenia z serwerem; w razie niepewności, należy pozostawić [kbd]tcp" "[/kbd]" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Typ połączenia" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Hasło użytkownika monitorującego" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7018,11 +7031,11 @@ msgstr "" "jest dostępnych pod adresem: [a@http://wiki.phpmyadmin.net/pma/controluser]" "wiki[/a]" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Użytkownik monitorujący" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -7030,11 +7043,11 @@ msgstr "" "Alternatywny host do trzymania konfiguracji phpMyAdmin, pozostaw puste aby " "użyć już zdefiniowanego hosta." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Kontrola hosta" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 #, fuzzy #| msgid "" #| "An alternate port to connect to the host that holds the configuration " @@ -7048,15 +7061,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Port sterowania" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Ukryj bazy danych pasujące do wyrażenia regularnego (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7065,15 +7078,15 @@ msgstr "" "phpmyadmin/bugs/2606/]PMA bug tracker[/a] i [a@http://bugs.mysql.com/19588]" "MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Wyłącz używanie INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Ukryj bazy danych" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma__history" @@ -7085,23 +7098,23 @@ msgstr "" "Pozostaw puste, bez zapytania poparcie historii SQL, zasugerował: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabela historii zapytań SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Nazwa hosta, gdzie serwer MySQL działa." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Nazwa hosta serwera" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL wylogowania" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 #, fuzzy #| msgid "" #| "Limits number of table preferences which are stored in database, the " @@ -7113,17 +7126,17 @@ msgstr "" "Ograniczenia Liczby preferencje tabeli, które są przechowywane w bazie " "danych, najstarsze rekordy są automatycznie usuwane" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Maksymalna ilość preferencji tabeli do przechowywania" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "Zobacz status tabeli serwera podrzędnego" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7135,13 +7148,13 @@ msgstr "" "Pozostaw puste, bez żadnego wsparcia PDF schematu, zaproponował: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns table" msgstr "Centralne kolumny" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7153,15 +7166,15 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Spróbuj połączyć się bez hasła." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Łącz się bez hasła" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7171,19 +7184,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Pokaż tylko wymienione bazy danych" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Pozostaw puste w przypadku innego niż uwierzytelniania konfiguracji." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Hasło dla uwierzytelniania konfiguracji" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7194,11 +7207,11 @@ msgstr "" "Pozostaw puste, bez żadnego wsparcia PDF schematu, zaproponował: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "Schemat PDF: strony tabeli" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7214,21 +7227,21 @@ msgstr "" "pmadb]pmadb[/a]. Puste pole oznacza brak obsługi. Domyślna wartość: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Nazwa bazy danych" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Port serwera" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7240,11 +7253,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Ostatnio używane tabele" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7256,13 +7269,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:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Tabele Ulubione" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7274,11 +7287,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Tabela relacji" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7290,33 +7303,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:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Nazwa sesji usługi pojedynczego logowania (Signon)" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL usługi pojedynczego logowania (Signon)" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Gniazdo serwera" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Włącz protokół SSL dla połączenia z serwerem MySQL." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Użyj SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7328,13 +7341,13 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, 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:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " @@ -7346,11 +7359,11 @@ msgstr "" "Tabela do opisu wyświetlania kolumn, pozostaw puste bez wsparcia; " "zasugerował: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Wyświetlanie tabeli kolumn" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables'UI preferences across sessions, " @@ -7362,11 +7375,11 @@ msgstr "" "Pozostaw puste, by nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Preferencje UI tabeli" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7374,11 +7387,11 @@ msgstr "" "Czy podczas tworzenia bazy danych polecenie DROP DATABASE IF EXISTS zostanie " "dodane jako pierwsza linia w dzienniku." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Dodaj DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7386,11 +7399,11 @@ msgstr "" "Czy polecenie DROP TABLE IF EXISTS zostanie dodane jako pierwsza linia w " "dzienniku podczas tworzenia tabeli." -#: libraries/config/messages.inc.php:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Dodaj DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7398,20 +7411,20 @@ msgstr "" "Czy polecenie DROP VIEW IF EXISTS zostanie dodane jako pierwsza linia w " "dzienniku podczas tworzenia widoku." -#: libraries/config/messages.inc.php:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Dodaj DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Instrukcje do śledzenia" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -7423,22 +7436,22 @@ msgstr "" "Puste pole oznacza brak wsparcia śledzenia zapytań SQL, zaproponował: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabela śledzenia zapytań SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 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:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Automatyczne tworzenie wersji" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7450,33 +7463,33 @@ msgstr "" "Pozostaw puste, dla braku preferencji użytkownika magazynu w bazie. " "Zasugerowano: [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabela przechowująca preferencje użytkowników" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Tabela użytkowników" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Tabela grupy użytkowników" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7488,15 +7501,15 @@ msgstr "" "Pozostaw puste, dla braku preferencji użytkownika magazynu w bazie. " "Zasugerowano: [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Ukryte elementy nawigacji tabeli" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Użytkownik dla konfiguracji uwierzytelniania" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7504,23 +7517,23 @@ msgstr "" "Przyjazny opis serwera dla użytkownika. Pozostaw puste, aby wyświetlić nazwę " "hosta." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Szczegółowa nazwa serwera" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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 "" -"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie (wiersze)" -"\";" +"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie " +"(wiersze)\";" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Pozwól wyświetlać wszystkie wiersze" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy #| msgid "" #| "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -7537,15 +7550,15 @@ msgstr "" "pliku konfiguracyjnym. To nie ogranicza możliwości wykonania tego samego " "polecenia bezpośrednio" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Pokaż formularz zmiany hasła" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Pokaż formularz tworzenia bazy danych" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Creation timestamp for all tables" @@ -7554,11 +7567,11 @@ msgstr "" "Pokaż lub ukryj kolumny wyświetlające 'Znacznik czasu tworzenia' dla " "wszystkich tabel" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Pokaż Znacznik czasu tworzenia" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last update timestamp for all tables" @@ -7568,11 +7581,11 @@ msgstr "" "Pokaż lub ukryj kolumny wyświetlające znaczniki czasu ostatniej aktualizacji " "dla wszystkich tabel" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Pokaż ostatni znacznik czasu aktualizacji" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last check timestamp for all tables" @@ -7582,11 +7595,11 @@ msgstr "" "Pokaż lub ukryj kolumny wyświetlające Ostatni znacznik czasu sprawdzania dla " "wszystkich tabel" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Pokaż Ostatni znacznik czasu sprawdzania" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7594,27 +7607,27 @@ msgstr "" "Określa, czy typ pola powinny być początkowo wyświetlany w trybie edycji/" "wstawiania." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Pokaż typy pól" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Wyświetla pola z funkcjami w trybie edycji/dodawania." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Pokaż pola z funkcjami" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Czy pokazać wskazówkę, czy nie." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Pokaż podpowiedź" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7626,26 +7639,26 @@ msgstr "" "Pokazuje odnośnik do [a@http://php.net/manual/function.phpinfo.php]phpinfo()" "[/a]" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Pokaż odnośnik phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Pokaż szczegółowe informacje o serwerze MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Pokaż zapytania SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 #, fuzzy #| msgid "" #| "Defines whether the query box should stay on-screen after its submission" @@ -7654,41 +7667,41 @@ msgid "" msgstr "" "Określa, czy pole zapytania, powinny pozostać na ekranie po jego złożeniu" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Zachowaj pole zapytania" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Pokaż statystyki" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Pomiń zablokowane tabele" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" "Ostrzeżenie jest wyświetlane na stronie głównej, jeśli Suhosin jest " "wykrywany." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Ostrzeżenie Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7701,13 +7714,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:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Ważność ciasteczka logowania" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 #, fuzzy #| msgid "" #| "Textarea size (columns) in edit mode, this value will be emphasized for " @@ -7719,11 +7732,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:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Pole tekstu kolumn" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 #, fuzzy #| msgid "" #| "Textarea size (rows) in edit mode, this value will be emphasized for SQL " @@ -7735,31 +7748,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:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Wierszy w polu textarea" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Tytuł okna przeglądarki, gdy nic nie jest wybrane." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Domyślny tytuł" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "Tytuł okna przeglądarki, gdy serwer jest wybrany." -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "Tytuł okna przeglądarki, gdy tabela jest wybrane." -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 #, fuzzy #| msgid "" #| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following " @@ -7777,31 +7790,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Dodaj katalog" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, 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:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Użyj szukania bazy danych" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7809,26 +7822,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Włącz zakładkę deweloperską w ustawieniach" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Sprawdź, czy jest nowsza wersja" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 msgid "" "The url of the proxy to be used when retrieving the information about the " "latest version of phpMyAdmin or when submitting error reports. You need this " @@ -7836,30 +7849,30 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Url Proxy" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Użytkownik proxy" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Hasło do uwierzytelniania z serwerem proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Hasło proxy" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -7871,53 +7884,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Klucz publiczny dla reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Klucz prywatny dla reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Wysyłanie raportów o błędzie" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Zrealizowane zapytania" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7939,46 +7952,46 @@ msgstr "Uwierzytelnianie HTTP" msgid "Signon authentication" msgstr "Zarejestruj się na uwierzytelnianiu" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV przy użyciu LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Otwórz dokument arkusza kalkulacyjnego" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Szybko" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Dostosuj" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opcje eksportu bazy danych" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV dla MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8210,20 +8223,20 @@ msgstr "Nie może liczyć wierszy w zestawie wyników niebuforowanych" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Brak hasła" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Hasło:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Powtórz:" @@ -8360,8 +8373,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Wartość ta jest interpretowana za pomocą %1$sstrftime%2$s, dzięki czemu " "można używać wartości czasu formatowania. Dodatkowo po transformacji stanie " @@ -8934,8 +8947,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentacja i dodatkowe informacje o PBXT można znaleźć na %sStronie " "domowej PrimeBase XT%s." @@ -9413,7 +9426,7 @@ msgstr "Wyjście" msgid "phpMyAdmin documentation" msgstr "Dokumewntacja phpMyAdmina" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Odśwież panel nawigacji" @@ -10086,8 +10099,8 @@ msgstr "Witamy w %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Możesz " "użyć %1$s skryptu instalacyjnego %2$s, aby utworzyć jedną." @@ -10320,7 +10333,7 @@ msgstr "Umieść nazwy kolumn w pierwszym wierszu" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Host:" @@ -11384,22 +11397,22 @@ msgstr "" "ID serwera. Jeśli tak nie jest, dodaj następującą linię w sekcji [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Nazwa użytkownika:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nazwa użytkownika" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Hasło" @@ -11427,10 +11440,10 @@ msgstr "ID serwera" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -11444,38 +11457,38 @@ msgstr "" "widoczne na tej liście." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Dowolny host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Host lokalny" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Ten host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Dowolny użytkownik" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Użyj pola tekstowego:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Użyj tabeli hostów" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11484,7 +11497,7 @@ msgstr "" "w tabeli hostów jest używana zamiast." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Ponownie" @@ -12247,7 +12260,7 @@ msgstr "Brak" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Grupa użytkownika" @@ -12318,14 +12331,14 @@ msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim." @@ -12334,7 +12347,7 @@ msgid "Administration" msgstr "Administracja" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globalne uprawnienia" @@ -12343,7 +12356,7 @@ msgid "Global" msgstr "Ogólny" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" @@ -12362,18 +12375,18 @@ msgstr "" "Pozwól dodawać użytkowników i nadawać uprawnienia bez przeładowywania tabeli " "uprawnień." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Dane użytkownika" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Użyj pola tekstowego" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12381,249 +12394,249 @@ msgstr "" "Konto już istnieje o tej samej nazwie użytkownika, ale prawdopodobnie inna " "nazwa hosta." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Nie zmieniaj hasła" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Hasło dla %s zostało zmienione." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Masz cofnięte uprawnienia dla %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Dodaj użytkownika" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Baza danych dla użytkownika" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " "(nazwaużytkownika_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Przyznanie wszystkich uprawnień do bazy danych \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Użytkownicy mają dostęp do \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Użytkownik został dodany." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Użytkownik" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Nadawanie" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Żadnego użytkownika nie znaleziono." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Dowolny" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "ogólny" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "znak wieloznaczny" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specyficzne dla bazy danych" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Edytuj uprawnienia" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Cofnij" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Edytuj grupę użytkownika" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… pozostaw starego." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… usunąć starą z tabel użytkowników." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… unieważnij wszystkie aktywne uprawnienia ze starej i usuń je później." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… usuń starą z tabel użytkownika i przeładuj uprawnienia później." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Zmień dane użytkownika / Kopiuj użytkownika" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database:" msgid "Add privileges on the following database(s):" msgstr "Dodaj uprawnienia dla następującej bazy danych:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Symbole wieloznaczne % i _ należy uciec z \\ z nich korzystać dosłownie." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Dodaj uprawnienia dla następującej tabeli:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Usuń zaznaczonych użytkowników" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Przeładuj uprawnienia" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Wybrani użytkownicy zostali usunięci pomyślnie." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Zaktualizowano uprawnienia dla %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Uprawnienia były przeładowane pomyślnie." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Użytkownik %s już istnieje!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Uprawnienia dla %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nowy" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Edytuj uprawnienia:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Omówienie użytkowników" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień " "MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, " "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Dodałeś nowego użytkownika." @@ -14480,21 +14493,21 @@ msgstr "Rozmiar pamięci podręcznej indeksów" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Rodzaj indeksu :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Użytkownik:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Komentarz:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15559,8 +15572,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Bieżący współczynnik wolnej pamięci pamięci podręcznej zapytań do " "całkowitego zapytania wielkości cache to %s%%. Powinno być powyżej 80%%" @@ -15716,8 +15729,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% wszelkiego rodzaju spowodować tabel tymczasowych, ta wartość ta powinna " "być niższa niż 10%%." @@ -16271,8 +16284,8 @@ msgstr "" #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" -"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej 1%" -"%" +"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej " +"1%%" #: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" @@ -17799,8 +17812,8 @@ msgstr "concurrent_insert jest ustawiony na 0" #~ "The result of this query can't be used for a chart. See [doc@faq6-29]FAQ " #~ "6.29[/doc]" #~ msgstr "" -#~ "W wyniku tej kwerendy nie może być używany dla wykresu. Zobacz [doc@faq6-" -#~ "29]FAQ 6.29[/doc]" +#~ "W wyniku tej kwerendy nie może być używany dla wykresu. Zobacz " +#~ "[doc@faq6-29]FAQ 6.29[/doc]" #~ msgid "Theme / Style" #~ msgstr "Motyw / Styl" diff --git a/po/pt.po b/po/pt.po index 46766178e5..3dfbea7742 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-20 14:21+0200\n" "Last-Translator: Sandro Amaral \n" "Language-Team: Portuguese \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.1-dev\n" @@ -67,7 +67,7 @@ msgstr "Comentários da tabela:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Coluna" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Ligações para" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Primária" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Não" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "porquê%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabela" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Registos" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Tamanho" @@ -374,9 +374,9 @@ msgstr "Estado" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -575,15 +575,15 @@ msgstr "Adicionar geometria" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -616,8 +616,8 @@ msgstr "Parâmetros incompletos" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Provavelmente tentou importar um ficheiro demasiado grande. Por favor veja a " "%sdocumentação%s para encontrar formas de contornar esta limitação." @@ -708,7 +708,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Voltar" @@ -732,7 +732,7 @@ msgid "General Settings" msgstr "Definições gerais" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Alterar a palavra-passe" @@ -807,7 +807,7 @@ msgstr "Informação da versão:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentação" @@ -1084,7 +1084,7 @@ msgstr "Adicionar Índice" msgid "Edit Index" msgstr "Editar Índice" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Adiciona %s coluna(s) ao Índice" @@ -1111,7 +1111,7 @@ msgstr "Tem que adicionar pelo menos uma coluna." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Pré-visualização SQL" @@ -1140,12 +1140,12 @@ msgstr "O nome da máquina está vazio!" msgid "The user name is empty!" msgstr "O nome do utilizador está vazio!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Indique a palavras-passe!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "As palavras-passe são diferentes!" @@ -1346,7 +1346,7 @@ msgstr "Adicione pelo menos uma variável à serie!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1642,7 +1642,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1853,7 +1853,7 @@ msgstr "Mostrar Caixa do query" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2110,7 +2110,7 @@ msgstr "Conteúdo do ponto de dados" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignora" @@ -2283,7 +2283,7 @@ msgstr "Clique na seta
para alternar a visibilidade da coluna." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Mostrar tudo" @@ -2388,7 +2388,7 @@ msgstr "Esconder Painel" msgid "Show hidden navigation tree items." msgstr "Mostrar items de navegação escondidos da árvore." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Conectar com o painel principal" @@ -2893,16 +2893,16 @@ msgid "Delete" msgstr "Apagar" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3021,7 +3021,7 @@ msgid "During current session" msgstr "Durante a sessão atual" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3401,11 +3401,11 @@ msgstr "A sua consulta SQL foi executada com êxito." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista tem número de linhas aproximado. Por favor, consulte a %" -"sdocumentação%s." +"Esta vista tem número de linhas aproximado. Por favor, consulte a " +"%sdocumentação%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3439,6 +3439,7 @@ msgstr "Com os seleccionados:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3454,12 +3455,12 @@ msgstr "Muda" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3651,7 +3652,7 @@ msgstr "" "Os Índices %1$s e %2$s parecem ser iguais ou um deles pode ter sido removido." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Servidor" @@ -3666,11 +3667,11 @@ msgstr "Vista" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3686,7 +3687,7 @@ msgstr "Estrutura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3712,9 +3713,9 @@ msgstr "Insere" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilégios" @@ -3774,9 +3775,9 @@ msgid "Central columns" msgstr "Colunas centrais" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Base de Dados" @@ -3884,7 +3885,7 @@ msgid "Recent" msgstr "Recente" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Tabelas Favoritas" @@ -3955,7 +3956,7 @@ msgstr "Ordem" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4324,21 +4325,21 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Um pequeno número de ponto flutuante, os valores permitidos são -3.402823466E" "+38 a -1.175494351E-38, 0 e 1.175494351E-38 a 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Um número de ponto flutuante com dupla precisão, os valores permitidos são -" -"1.7976931348623157E+308 a -2.2250738585072014E-308, 0 e 2.2250738585072014E-" -"308 a 1.7976931348623157E+308" +"Um número de ponto flutuante com dupla precisão, os valores permitidos são " +"-1.7976931348623157E+308 a -2.2250738585072014E-308, 0 e " +"2.2250738585072014E-308 a 1.7976931348623157E+308" #: libraries/Types.class.php:336 msgid "" @@ -4383,9 +4384,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Um carimbo temporal, intervalo é desde 1970-01-01 00:00:01 UTC até 2038-01-" -"09 03:14:07 UTC, guardado como um número de segundos desde a época (1970-01-" -"01 00:00:00 UTC)" +"Um carimbo temporal, intervalo é desde 1970-01-01 00:00:01 UTC até " +"2038-01-09 03:14:07 UTC, guardado como um número de segundos desde a época " +"(1970-01-01 00:00:00 UTC)" #: libraries/Types.class.php:350 libraries/Types.class.php:788 #, php-format @@ -4579,8 +4580,8 @@ msgid "" "An 8-byte integer, range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807" msgstr "" -"O intervalo de um número inteiro de 8-byte é entre -" -"9,223,372,036,854,775,808 e 9,223,372,036,854,775,807" +"O intervalo de um número inteiro de 8-byte é entre " +"-9,223,372,036,854,775,808 e 9,223,372,036,854,775,807" #: libraries/Types.class.php:774 msgid "A system's default double-precision floating-point number" @@ -4634,7 +4635,7 @@ msgstr "Tamanho máximo: %s%s" msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Explicar SQL" @@ -4646,7 +4647,7 @@ msgstr "Saltar Explicar SQL" msgid "Without PHP Code" msgstr "Sem código PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Criar código PHP" @@ -4761,13 +4762,13 @@ msgstr "Descrição" msgid "Use this value" msgstr "Utilizar este valor" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5175,7 +5176,7 @@ msgid "Set value: %s" msgstr "Definir valor: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Restaurar valor padrão" @@ -5606,24 +5607,36 @@ msgstr "Separador que é mostrado quando se entra numa tabela." msgid "Default table tab" msgstr "Separador padrão para a tabela" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Encapsular nomes de tabela e coluna com acentos grave" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Encapsular nomes de tabela e coluna com acentos grave" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Se as acções da estrutura da tabela devem ser escondidas." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Ocultar as acções à estrutura da tabela" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" "Mostrar lista de servidores como uma lista ao invés de um menu drop down." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Mostrar servidores como uma lista" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5631,11 +5644,11 @@ msgstr "" "Desativar operações em massa de manutenção de tabelas, como optimizar ou " "reparar as tabelas seleccionadas de uma base de dados." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Desactivar a manutenção de múltiplas tabelas" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5643,39 +5656,39 @@ msgstr "" "Define o número máximo de segundos que um script tem para executar ([kbd]0[/" "kbd] para sem limite)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Tempo máximo de execução" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Itens" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "envia" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Configurar o Mapa de Caracteres do ficheiro" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compressão" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5685,60 +5698,60 @@ msgstr "Compressão" msgid "Put columns names in the first row" msgstr "Colocar os nomes das colunas na primeira linha" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Colunas delimitadas com" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Colunas precedidas com" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Substituir NULL com" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Remover caracteres CRLF nas colunas" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Colunas terminadas com" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Linhas terminadas com" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Edição do Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Modelo de nome da base de dados" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Nome do servidor modelo" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Modelo de nome da tabela" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5747,139 +5760,139 @@ msgstr "Modelo de nome da tabela" msgid "Dump table" msgstr "Eliminar tabela" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Incluir a legenda da tabela" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Legenda da tabela" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Continuação da legenda da tabela" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Rótulo da chave" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Tipo MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relações" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Metodo de Exportação" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Guardar no Servidor" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Substituir o(s) ficheiro(s) existente(s)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Lembrar Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Encapsular nomes de tabela e coluna com acentos grave" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL modo compatibilidade" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE Opções:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Datas de Criação/Actualização/verificação" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Usar inserções demoradas" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Desativar verificação de chaves estrangeiras" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exportar visualizações como tabelas" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Usar hexadecimal para BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Usar inserções ignoradas" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Sintaxe a utilizar ao inserir dados" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Tamanho máximo da consulta gerada" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Tipo de Exportação" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Encapsular exportação numa transação" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Hora de Exportação em UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Forçar conexão segura ao utilizar o phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Forçar conexão SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -5891,143 +5904,143 @@ msgstr "" "Ordena objetos numa caixa de selecção de chaves estrangeiras; [kbd]conteúdo[/" "kbd] é o dado referenciado, [kbd]id[/kbd] é o valor da chave." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Ordem da caixa de seleção de chave estrangeira" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" "Uma caixa de seleção será utilizada se poucos itens estiverem presentes." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Limite de chave estrangeira" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Modo de navegação" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Personalizar modo de navegação." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Personalizar as opções por defeito." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "Dados CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Programador" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Configurações para programadores phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Modo de edição" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Personalizar modo de edição." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Exportar predefinições" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Personalizar as opções de exportação por defeito." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funcionalidades" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Geral" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Define algumas opções usadas frequentemente." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importar predefinições" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Personalizar opções de importação por defeito comuns." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importar / exportar" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Define diretórios de importação e exportação e opções de compressão." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Opções de visualização das Bases de dados." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Painel de navegação" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Personalizar a aparência do painel de navegação." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servidores" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Exibir as opções dos servidores." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Opções de exibição de tabelas." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Painel principal" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Outras configurações do núcleo" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Configurações que não se encaixavam em nenhum outro lugar." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Títulos das páginas" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6036,19 +6049,19 @@ msgstr "" "[doc@cfg_TitleTable]documentation[/doc] para strings mágicas que podem ser " "utilizadas para obter valores especiais." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Janela de consulta" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Opções de personalização da janela de consulta" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Segurança" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6056,23 +6069,23 @@ msgstr "" "Por favor repare que o phpMyAdmin é uma interface de utilizador e as suas " "funcionalidades não limitam o MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Configurações básicas" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autenticação" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Configurações de autenticação." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Configuração do servidor" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6080,15 +6093,15 @@ msgstr "" "Configurações avançadas do servidor, não altere estas opções a menos que " "saiba para que são." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Digite os parâmetros de ligação ao servidor." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Armazenamento de configuração" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6098,11 +6111,11 @@ msgstr "" "funcionalidades adicionais, consulte [doc@linked-tables]phpMyAdmin " "configuration storage[/doc] na documentação." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Rastreamento de alterações" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6110,109 +6123,109 @@ msgstr "" "Rastreamento das mudanças feitas na base de dados. Requerem o armazenamento " "da configuração do phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Personalizar opções de exportação" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Personalizar os padrões de importação" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Personalizar o painel de navegação" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Personalizar o painel principal" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Consultas SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL caixa de Consulta" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Personaliza links mostrados nas caixas de consulta SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Definições de consultas SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Iniciar" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Personalizar página inicial." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Estrutura da base de dados" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Escolha que detalhes mostrar na estrutura da base de dados (lista de " "tabelas)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Estrutura da tabela" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Definições para a estrutura da tabela (lista de colunas)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Abas" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Escolha como quer que as abas funcionem." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Mostrar esquema relacional" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Tamanho do papel" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Campos de Texto" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Personalizar campos de entrada de texto." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texto Texy!" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Personalizar as opções padrão" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Avisos" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Desative alguns dos avisos mostrados pelo phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6220,15 +6233,15 @@ msgstr "" "Activar compressão [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] nas " "operações de importação e exportação." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Parâmetros extra para o iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6236,11 +6249,11 @@ msgstr "" "Se ativado, phpMyAdmin continua a processar consultas com múltiplas " "instruções mesmo se uma das consultas falhar." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignora erro de declarações múltiplas" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6250,28 +6263,28 @@ msgstr "" "do tempo limite. Esta pode ser uma boa maneira para importar arquivos " "grandes, contudo pode interromper as transações." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Importação parcial: permite Interrupção" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Desativar verificação de chaves estrangeiras" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Não abortar perante erro INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Substituir os dados da tabela pelos do arquivo" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6279,69 +6292,69 @@ msgstr "" "Formato padrão; esteja ciente que esta lista depende da localização (base de " "dados, tabela) e somente o SQL está sempre disponível." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formato do arquivo importado" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Usar palavra-chave LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Nome das colunas na primeira linha" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Não importe linhas vazias" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importa divisas ($5.00 para 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importa percentagens como decimal (12.00% para .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Número de consultas para ignorar do início." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Importação parcial: ignorar consultas" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Não usar AUTO_INCREMENT para valores zero" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Estado inicial das barras de deslocação" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Quantas linhas podem ser inseridas de uma vez." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Número de linhas inseridas" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Número máximo de caracteres apresentados em qualquer coluna não-numérica na " "vista de navegação." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Limitar caracteres da coluna" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6352,11 +6365,11 @@ msgstr "" "o como FALSO facilita o esquecimento de sair de outros servidores quando " "conectado a vários servidores." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Apagar todos os cookies quando sair" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6364,11 +6377,11 @@ msgstr "" "Define se o login anterior deve ser recordado ou não no modo de autenticação " "de [kbd]cookie[/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Lembrar nome de utilizador" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6380,49 +6393,49 @@ msgstr "" "actual, e será apagado assim que fechar a janela do navegador. Isto é " "recomendado para ambientes não-confiáveis." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Armazena cookie de inicio de sessão" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" "Definir a duração (em segundos) da validade do cookie de inicio de sessão." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Validade do cookie de inicio de sessão" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Duplicar o tamanho da área de texto para colunas LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Maior caixa de texto para LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Número máximo de caracteres usados quando uma consulta SQL é mostrada." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Largura máxima do SQL exibido" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Os utilizadores não podem definir um valor maior" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Número máximo de base de dados exibidas na lista de base de dados." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Número máximo de bases de dados" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6430,11 +6443,11 @@ msgstr "" "O número de itens que podem ser mostrados em cada página no primeiro nível " "da árvore de navegação." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Máximo de itens no primeiro nível" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6442,11 +6455,11 @@ msgstr "" "O número de itens que podem ser mostradas em cada página da árvore de " "navegação." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Máximo de itens por ramo" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6454,19 +6467,19 @@ msgstr "" "Número de linhas exibidas ao navegar o resultado encontrado. Se o resultado " "tiver mais linhas, \"Anteriores\" e \"Próximas\" ligações serão apresentadas." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Número máximo de linhas a exibir" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Número máximo de tabelas exibidas na lista de tabelas." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Número máximo de tabelas" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6474,41 +6487,41 @@ msgstr "" "O número de bytes que um script pode alocar, ex. [kbd]32M[/kbd] ([kbd]0[/" "kbd] para sem limite)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Limite de memória" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Mostrar items de navegação escondidos da árvore." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Mostrar o logótipo no painel de navegação." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Mostrar logotipo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL para onde irá apontar o logótipo do painel de navegação." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL do link do logotipo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6516,29 +6529,29 @@ msgstr "" "Abre a página ligada na janela principal ([kbd]principal[/kbd]) ou numa nova " "janela ([kbd]nova[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Destino da ligação do logótipo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Apresentar o servidor escolhido no topo do painel de navegação." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Mostrar seleção de servidores" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Alvo para ícone de acesso rápido" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Alvo para ícone de acesso rápido" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6546,17 +6559,17 @@ msgstr "" "Define o número mínimo de itens (tabelas, vistas, rotinas e eventos) a " "apresentar numa caixa de filtragem." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Número mínimo de itens a apresentar na caixa de filtragem" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" "Número mínimo de bases de dados para mostrar a caixa de filtragem de base de " "dados" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6564,42 +6577,42 @@ msgstr "" "Itens de grupo na árvore de navegação (determinado pelo separador definido " "abaixo)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Agrupar itens na árvore" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" "Cadeia de caracteres que separa bases de dados em diferentes níveis de " "árvore." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Divisor de árvore da base de dados" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" "Cadeia de caracteres que separa tabelas em níveis diferentes de árvores." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Separador de árvore da tabela" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Profundidade máxima da árvore da tabela" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Destaque servidor sob o cursor do rato." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Ativar destaque" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" @@ -6607,59 +6620,59 @@ msgid "" msgstr "" "Se deseja desabilitar a possibilidade de expandir a base de dados ou não." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Barra de navegação de tabelas" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Número máximo de tabelas utilizadas recentemente, definir 0 para desativar." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Número máximo de tabelas favoritas, definir 0 para desativar." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Tabelas utilizadas recentemente" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Estas são ligações Editar, Copiar e Apagar." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Onde mostrar as ligações da linha da tabela" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Ordem natural" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Usar apenas ícones, apenas texto ou ambos." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Barra de navegação de tabelas" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Buffer de saída GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6667,19 +6680,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Ordenação padrão" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Usar ligações persistentes para bases de dados MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Ligações persistentes" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6689,11 +6702,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6701,11 +6714,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Aviso de divergência Servidor/Biblioteca" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6714,27 +6727,27 @@ msgstr "" "base de dados se algum dos nomes de coluna numa tabela forem palavras " "reservadas do MySQL." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Aviso de palavra reservada ao MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Como mostrar os separadores do menu" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Como mostrar várias ligações de acções" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Não permitir edição de colunas BLOB e BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Proteger colunas binárias" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6744,130 +6757,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Histórico de consultas permanente" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Quantas consultas são mantidas no histórico." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Tamanho do histórico de consultas" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Motor de Recodificação" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Lembrar ordenação da tabela" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Ordenação padrão" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Repetir cabeçalhos" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Edição de grelha: executar ação" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Coluna de visualização relacional" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Exibir as opções dos servidores." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Pasta para guardar" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Deixar em branco se não for usado." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Ordem de autorização do Anfitrião" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Deixe em branco por defeito." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Regras de autorização do anfitrião" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Permitir login sem uma palavra-passe" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Permitir login como root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Valor de sessão" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Domínio HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6877,19 +6890,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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Ficheiro de configuração Swekey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Método de autenticação a utilizar." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Tipo de autenticação" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6897,11 +6910,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabela de favoritos" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6909,31 +6922,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabela de informações de coluna" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Comprimir ligação ao servidor MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Comprimir ligação" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Tipo de ligação" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Plavara-passe de utlizador de controlo" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6942,11 +6955,11 @@ msgstr "" "informações disponíveis em [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" "[/a]." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Utilizador de controlo" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6954,11 +6967,11 @@ msgstr "" "Um servidor alternativo para armazenar a configuração; deixe em branco para " "utilizar um servidor já definido." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Controlar host" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6968,15 +6981,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Controlar porta" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Ocultar bases de dados correspondentes a expressão regular (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6984,15 +6997,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desativar o uso do INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Ocultar bases de dados" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -7000,23 +7013,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:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabela de histórico das consultas SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Nome do Servidor onde o MYSQL está a ser executado." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Nome do servidor" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL de fim de sessão" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -7024,15 +7037,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:624 +#: libraries/config/messages.inc.php:626 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:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7044,13 +7057,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:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns table" msgstr "Colunas centrais" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7062,15 +7075,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:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Tentar ligar sem palavra-passe." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Ligar sem palavra-passe" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7080,30 +7093,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Mostrar apenas bases de dados listadas" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Deixar vazio se não utilizar autenticação por config." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Palavra-passe para config-auth" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "Esquema PDF: tabela de páginas" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7114,21 +7127,21 @@ msgstr "" "informações. Deixe em branco para nenhum apoio. Sugerido: [kbd]phpmyadmin[/" "kbd]." -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Nome da base de dados" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Porta do servidor" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7136,11 +7149,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Tabela utilizada recentemente" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7152,13 +7165,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:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Tabelas Favoritas" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7167,11 +7180,11 @@ msgstr "" "net/pma/bookmark]ligações de relações[/a], sugerido: [kbd]pma__bookmark[/" "kbd]." -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Tabela de relações" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7179,32 +7192,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:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Nome da sessão" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL de Signon" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Socket do servidor" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Usar SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7212,13 +7225,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:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "Esquema PDF: Coordenadas de tabela" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7226,11 +7239,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Mostrando comentários das colunas" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7238,11 +7251,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Preferencias UI de tabela" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7250,11 +7263,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Adicionar DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7262,11 +7275,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Adicionar DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7274,20 +7287,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Adicionar DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Instruções para rastrear" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7295,11 +7308,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:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabela de histórico de consultas do SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7307,11 +7320,11 @@ msgstr "" "Se o mecanismo de rastreamento cria versões para tabelas e vistas " "automaticamente." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Criar versões automaticamente" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7319,11 +7332,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabela de armazenamento das preferências do utilizador" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7333,11 +7346,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Tabela de utilizadores" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7348,11 +7361,11 @@ msgstr "" "branco irá desabilitar esta funcionalidade, sugerido: [kbd]pma__usergroups[/" "kbd]." -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Tabela de grupos do utilizador" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7360,15 +7373,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Tabela dos itens de navegação oculta" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Utilizador para a configuração de autenticação" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7376,20 +7389,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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Nome detalhado deste servidor" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Permitir a exibição de todas as filas" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7400,47 +7413,47 @@ msgstr "" "ficheiro de configuração; isto não impossibilita que o mesmo comando seja " "executado diretamente." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Mostrar o formulário de mudança de password" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Mostrar o formulário de criação de base de dados" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Mostrar data (timestamp) da criação" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Mostrar a data (timestamp) da última actualização" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Mostrar a data (timestamp) da última verificação" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7448,27 +7461,27 @@ msgstr "" "Define se os tipos de campo devem ser mostrados inicialmente no modo editar/" "inserir, ou não." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Mostrar os tipos dos campos" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Mostrar os campos da função" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Se mostra sugestão ou não." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Mostrar sugestão" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7476,62 +7489,62 @@ msgstr "" "Mostra o link para [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/" "a] resultado." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Mostrar o link phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Mostrar informação detalhada do servidor MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Mostrar consultas SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Reter a caixa da consulta (query)" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Mostrar estatísticas" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Ignorar tabelas bloqueadas" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "É exibido um aviso na página principal se Suhosin for detetado." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Aviso do Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7545,13 +7558,13 @@ msgstr "" "base de dados se algum dos nomes de coluna numa tabela forem palavras " "reservadas do MySQL." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Validade do cookie de inicio de sessão" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7560,11 +7573,11 @@ msgstr "" "alterado para caixas de texto de consultas SQL (*2) e para janelas de " "consultas (*1.25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Colunas da área de texto" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7573,32 +7586,32 @@ msgstr "" "para caixas de texto de consultas SQL (*2) e para janelas de consultas " "(*1.25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Linhas da área de texto" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Título por defeito" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7606,27 +7619,27 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Pasta de upload" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Permitir pesquisas dentro da base de dados." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Utilizar a pesquisa da base de dados" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7634,27 +7647,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Activar o separador Programador nas definições" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Verificar se é a última versão" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 +7679,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:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "URL da proxy" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7681,19 +7694,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Nome de utilizador da proxy" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "A senha para se autenticar na proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Senha da proxy" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7701,51 +7714,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Chave pública para o reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Chave privada para o reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Enviar relatórios de erro" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7767,44 +7780,44 @@ msgstr "Autenticação HTTP" msgid "Signon authentication" msgstr "Autenticação Signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV usando o LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Folha de cálculo OpenDocument" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Rápido" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Personalizado" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "dados CSV para MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Texto OpenDocument" @@ -8055,20 +8068,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Sem palavra-passe" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Palavra-passe:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Confirma:" @@ -8207,8 +8220,8 @@ msgstr ", @TABLE@ será o nome da tabela" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8739,8 +8752,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9229,7 +9242,7 @@ msgstr "Sair" msgid "phpMyAdmin documentation" msgstr "Documentação do phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Navigation panel" msgid "Reload navigation panel" @@ -9921,11 +9934,11 @@ msgstr "Bemvindo ao %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%" -"2$s pode ser utilizado para criar um." +"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script" +"%2$s pode ser utilizado para criar um." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10187,7 +10200,7 @@ msgstr "Colocar os nomes das colunas na primeira linha" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11184,7 +11197,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11192,16 +11205,16 @@ msgstr "Nome do Utilizador" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nome do Utilizador" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Palavra-passe" @@ -11231,10 +11244,10 @@ msgstr "Servidor" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Máquina" @@ -11246,47 +11259,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Qualquer máquina" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Este Anfitrião" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Qualquer utilizador" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Usar campo de texto" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Usar a tabela do anfitrião" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Confirma" @@ -12084,7 +12097,7 @@ msgstr "Nenhum" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12152,14 +12165,14 @@ msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12170,7 +12183,7 @@ msgid "Administration" msgstr "Administração" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Privilégios Globais" @@ -12181,7 +12194,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" @@ -12200,149 +12213,149 @@ msgstr "" "Permite adicionar utilizadores e privilégios sem recarregar a tabela de " "privilégios." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Informação de Login" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Usar campo de texto" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Mantendo a palavra-passe" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "A palavra-passe para %s foi alterada com sucesso." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Anulou os privilégios para %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Adicionar utilizador" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Verificar Privilégios para a Base de Dados \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilizadores que tem acesso a \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "A Vista %s foi eliminada" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Utilizador" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Conceder/Grant" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum utilizador encontrado." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Todos" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Especifico da Base de Dados" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Alterar Privilegios" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Anula" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Editar próxima coluna" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… manter o antigo." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… apagar o antigo das tabelas do utilizador." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… revogar todos os privilégios activos do antigo e a seguir apagá-lo." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12350,125 +12363,125 @@ msgstr "" "… apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Mudar a informação de login / Copiar Utilizador" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Criar um novo utilizador com os mesmo privilégios e …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilégios específicos da Coluna" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Adicionar privilégios na base de dados seguinte" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Todos privilégios na tabela seguinte" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Remover utilizadores seleccionados" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" "Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "A recarregar privilégios" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Actualizou os privilégios de %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "A apagar %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "O utilizador %s já existe!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilégios" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Alterar Privilegios" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da " "tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos " "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." @@ -14273,23 +14286,23 @@ msgstr "Nome do Índice :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tipo de Índice :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Utilizador:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Comentário" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15344,8 +15357,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15475,8 +15488,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/pt_BR.po b/po/pt_BR.po index 51f24afc8f..3a6b3ad6e5 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" -"PO-Revision-Date: 2015-03-10 18:00+0200\n" -"Last-Translator: Helder Santana \n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" +"PO-Revision-Date: 2015-03-22 04:25+0200\n" +"Last-Translator: Thiago Casotti \n" "Language-Team: Portuguese (Brazil) \n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.3-dev\n" @@ -67,7 +67,7 @@ msgstr "Comentários de tabela:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Coluna" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Links para" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Primária" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Não" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "descobrir o motivo, clique %saqui%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabela" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Linhas" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Tamanho" @@ -373,9 +373,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -572,15 +572,15 @@ msgstr "Adicionar geometria" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -613,8 +613,8 @@ msgstr "Parâmetros incompletos" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentação%s para resolver esse problema." @@ -704,7 +704,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Voltar" @@ -728,7 +728,7 @@ msgid "General Settings" msgstr "Configurações gerais" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Alterar a senha" @@ -801,7 +801,7 @@ msgstr "Informações da versão:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentação" @@ -905,8 +905,8 @@ msgid "" "extended features have been deactivated. %sFind out why%s. " msgstr "" "O armazenamento de configurações do phpMyAdmin não está completamente " -"configurado, algumas funções avançadas foram desativadas. %sDescubra porque%" -"s. " +"configurado, algumas funções avançadas foram desativadas. %sDescubra porque" +"%s. " #: index.php:549 msgid "" @@ -1056,7 +1056,7 @@ msgstr "Adicionar índice" msgid "Edit Index" msgstr "Editar índice" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Adicionar %s coluna(s) ao índice" @@ -1083,7 +1083,7 @@ msgstr "Você deve adicionar pelo menos uma coluna." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Ver SQL" @@ -1112,12 +1112,12 @@ msgstr "O nome do servidor está vazio!" msgid "The user name is empty!" msgstr "O nome do usuário está em branco!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "A senha está em branco!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" @@ -1321,7 +1321,7 @@ msgstr "Por favor adicione no mínimo uma variável à série!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1621,7 +1621,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1834,7 +1834,7 @@ msgstr "Mostrar caixa de consulta" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2087,7 +2087,7 @@ msgstr "Conteúdo do ponteiro de dados" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorar" @@ -2266,7 +2266,7 @@ msgstr "Clique na seta
para alternar a visibilidade da coluna." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Mostrar tudo" @@ -2371,7 +2371,7 @@ msgstr "Ocultar painel" msgid "Show hidden navigation tree items." msgstr "Mostrar itens ocultos da árvore de navegação." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Fazer ligação com painel principal" @@ -2877,16 +2877,16 @@ msgid "Delete" msgstr "Remover" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3001,7 +3001,7 @@ msgid "During current session" msgstr "Durante a sessão atual" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3382,11 +3382,11 @@ msgstr "Seu comando SQL foi executado com sucesso." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta view tem pelo menos esse número de linhas. Por favor, consulte a %" -"sdocumentação%s." +"Esta view tem pelo menos esse número de linhas. Por favor, consulte a " +"%sdocumentação%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3420,6 +3420,7 @@ msgstr "Com marcados:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3435,12 +3436,12 @@ msgstr "Alterar" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3633,7 +3634,7 @@ msgstr "" "removida." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Servidor" @@ -3648,11 +3649,11 @@ msgstr "Visualizar" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3668,7 +3669,7 @@ msgstr "Estrutura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3694,9 +3695,9 @@ msgstr "Inserir" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilégios" @@ -3756,9 +3757,9 @@ msgid "Central columns" msgstr "Colunas centrais" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Bancos de dados" @@ -3869,7 +3870,7 @@ msgid "Recent" msgstr "Recente" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Tabelas favoritas" @@ -3940,7 +3941,7 @@ msgstr "Ordenação" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4303,16 +4304,16 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Um número curto de ponto flutuante, os valores permitidos são: de -" -"3,402823466E+38 a -1,175494351E-38, 0 e de 1,175494351E-38 a 3,402823466E+38" +"Um número curto de ponto flutuante, os valores permitidos são: de " +"-3,402823466E+38 a -1,175494351E-38, 0 e de 1,175494351E-38 a 3,402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Um número de ponto flutuante de dupla precisão (longo), os valores " @@ -4615,7 +4616,7 @@ msgstr "Tamanho máximo: %s%s" msgid "MySQL said: " msgstr "Mensagem do MySQL: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Demonstrar SQL" @@ -4627,7 +4628,7 @@ msgstr "Pular demonstração do SQL" msgid "Without PHP Code" msgstr "Sem código PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Criar código PHP" @@ -4739,13 +4740,13 @@ msgstr "Descrição" msgid "Use this value" msgstr "Usar este valor" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5148,7 +5149,7 @@ msgid "Set value: %s" msgstr "Definir valor: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Restaurar valor padrão" @@ -5377,15 +5378,14 @@ msgid "Allow login to any MySQL server" msgstr "Permitir login para qualquer servidor MySQL" #: libraries/config/messages.inc.php:21 -#, fuzzy msgid "" "Restricts the MySQL servers the user can enter when a login to an arbitrary " "MySQL server is enabled by matching the IP or hostname of the MySQL server " "to the given regular expression." msgstr "" -"Restringe os servidores MySQL que o usuário pode entrar quando o login em um " -"servidor MySQL arbitrário é habilitado pela correspondência entre o IP ou " -"nome do host do servidor MySQL para a expressão regular especificada." +"Restringe os servidores MySQL que o usuário pode entrar quando o login para " +"um servidor MySQL arbitrário está habilitado por correspondência de IP ou " +"nome de host do servidor MySQL para a expressão regular dada." #: libraries/config/messages.inc.php:25 msgid "Restrict login to MySQL server" @@ -5576,24 +5576,36 @@ msgstr "Aba exibida ao acessar uma tabela." msgid "Default table tab" msgstr "Aba de tabela padrão" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Usar crases nos nomes de tabelas e campos" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Usar crases nos nomes de tabelas e campos" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "As ações de estrutura de tabelas devem estar ocultas." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Esconder as ações de estrutura da tabela" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" "Exibir lista de servidores como uma lista ao invés de uma caixa de seleção." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Exibir servidores como uma lista" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5601,11 +5613,11 @@ msgstr "" "Desativar as operações de manutenção de tabelas em massa, como otimizar ou " "reparar as tabelas selecionadas de um banco de dados." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Desativar a manutenção de múltiplas tabelas" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5613,39 +5625,39 @@ msgstr "" "Define o número de segundos permitido para execução de script ([kbd]0[/kbd] " "para não ter limite)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Tempo máximo de execução" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Adicionar comando %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Salvar como arquivo" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Conjunto de caracteres do arquivo" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compressão" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5655,60 +5667,60 @@ msgstr "Compressão" msgid "Put columns names in the first row" msgstr "Colocar os nomes das colunas na primeira linha" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Colunas delimitadas por" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Campos divididos com" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Substituir NULL com" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Remover caracteres CRLF em colunas" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Colunas terminadas com" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Linhas terminadas com" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Edição do Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Modelo de nome de banco de dados" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Modelo de nome do servidor" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Modelo de nome da tabela" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5717,137 +5729,137 @@ msgstr "Modelo de nome da tabela" msgid "Dump table" msgstr "Despejar tabela" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Incluir legenda da tabela" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Legenda de tabela" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Continuação da legenda da tabela" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Rótulo da chave" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Tipo MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relações" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Método de exportação" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Salvar em servidor" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Sobrescrever arquivo(s) existente(s)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Lembrar modelo de nome de arquivo" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Usar crases nos nomes de tabelas e campos" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Modo de compatibilidade SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CRIAR TABELA opções:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Criar/Atualizar/Verificar datas" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Usar inserções demoradas" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Desabilitar verificação de chaves estrangeiras" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exportar vistas como tabelas" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Usar hexadecimal para BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Usar inserções ignoradas" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Sintaxe a utilizar ao inserir dados" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Comprimento máximo de query criada" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Tipo de exportação" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Encapsular exportação numa transação" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exportar horário em UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Forçar conexão segura ao utilizar o phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Forçar conexão SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5856,142 +5868,142 @@ msgstr "" "o [kbd]conteúdo[/kbd] é o dado referenciado, e o [kbd]id[/kbd] é o valor " "chave." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Ordem da caixa drop-down de chave estrangeira" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Uma caixa dropdown será utilizada se menos itens estiverem presentes." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Limite de chave estrangeira" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Modo de navegação" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Personalizar modo de navegação." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Personalizar opções padrão." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Desenvolvedor" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Configurações para desenvolvedores phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Modo de edição" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Personalizar modo de edição." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Padrões de exportação" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Personalizar opções de exportação padrão." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funções" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Geral" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Define algumas opções comumente utilizadas." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Padrões de importação" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Personalizar opções de importação padrão comuns." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importar / exportar" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Define diretórios de importação e exportação e opções de compressão." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Opções de exibição de bancos de dados." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Painel de navegação" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Personalizar a aparência do painel de navegação." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servidores" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Opções de exibição de servidores." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Opções de exibição de tabelas." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Painel principal" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Outras configurações principais" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Configurações que não se encaixavam em nenhum outro lugar." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Títulos de páginas" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6000,19 +6012,19 @@ msgstr "" "documentação[/doc] para strings mágicas que podem ser usadas para conseguir " "valores especiais." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Janela de query" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Opções de personalização da janela de query" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Segurança" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6020,23 +6032,23 @@ msgstr "" "Favor saiba que o phpMyAdmin é apenas uma interface de usuário e suas " "funcionalidades não limitam o MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Configurações básicas" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autenticação" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Configurações de autenticação." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Configuração do servidor" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6044,15 +6056,15 @@ msgstr "" "Configurações avançadas do servidor, não altere estas opções a não ser que " "você saiba para que elas servem." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Digite os parâmetros de conexão do servidor." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Configuração de armazenamento" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6062,11 +6074,11 @@ msgstr "" "funções adicionais, veja [doc@linked-tables]armazenamento de configurações " "do phpMyAdmin[/doc] na documentação." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Monitoramento de mudanças" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6074,109 +6086,109 @@ msgstr "" "Monitoramento de mudanças feitas em banco de dados. Requer o armazenamento " "de configurações do phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Personalizar opções de exportação" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Personalizar padrões de importação" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Personalizar painel de navegação" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Personalizar painel principal" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Queries SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Caixa de query SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Personalizar links mostrados nas caixas de query SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Configurações de queries SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Inicialização" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Personalizar página inicial." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Estrutura de banco de dados" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Escolha quais detalhes devem ser mostrados na estrutura de banco de dados " "(lista de tabelas)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Estrutura da tabela" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Configurações para a estrutura de tabela (lista de campos)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Abas" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Escolha como você quer que as abas funcionem." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Mostrar esquema relacional" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Tamanho do papel" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Campos de texto" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Personalizar campos de entrada de texto." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texto Texy!" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Personalizar opções padrão" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Avisos" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Desativa alguns dos avisos mostrados pelo phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6184,15 +6196,15 @@ msgstr "" "Habilitar a compressão [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] nas " "operações de importação e exportação." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Parâmetros extras para o iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6200,11 +6212,11 @@ msgstr "" "Se habilitado, o phpMyAdmin continua processando consultas com múltiplas " "instruções mesmo se uma das queries falhar." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignora erros de instruções múltiplas" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6214,28 +6226,28 @@ msgstr "" "está perto do tempo limite. Isso pode ser uma boa maneira de importar " "arquivos grandes, no entanto isso pode quebrar as transações." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Importação parcial: permite interrupção" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Desabilitar verificação de chaves estrangeiras" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Não aborta em erro de INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Substituir dados de tabela por arquivo" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6243,69 +6255,69 @@ msgstr "" "Formato padrão; esteja ciente que esta lista depende da localização (banco " "de dados, tabela) e somente o SQL está sempre disponível." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formato do arquivo importado" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Usar palavra-chave LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Nome das colunas na primeira linha" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Não importar linhas vazias" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importa moeda ($5.00 para 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importa porcentagem como decimal (12.00% para .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Número de queries a pular do começo." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Importação parcial: queries puladas" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Não usar AUTO_INCREMENT para valores zero" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Estado inicial das barras de rolagem" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Quantas linhas podem ser inseridas de uma vez." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Número de linhas inseridas" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Número máximo de caracteres apresentados em qualquer coluna não-numérica em " "modo de navegação." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Limite de caracteres por campo" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6316,11 +6328,11 @@ msgstr "" "FALSE torna fácil esquecer de sair dos outros servidores quando conectado à " "vários servidores." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Remover todos os cookies ao sair" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6328,11 +6340,11 @@ msgstr "" "Definir se as autenticações anteriores devem ser recolhidas no modo de " "autenticação [kbd]cookie[/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Lembrar do nome de usuário" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6344,49 +6356,49 @@ msgstr "" "atual e será apagado quando você fechar a janela do navegador. Isso é " "recomendado para ambientes não confiáveis." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Armazenamento de cookie de login" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Define a duração (em segundos) da validade do cookie de login." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Validade do cookie de login" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Tamanho dobrado da textarea para colunas LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Textarea maior para LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" "Numero máximo de caracteres utilizados na exibição do resultado da query SQL." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Comprimento máximo do SQL exibido" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Usuários não podem definir um valor maior" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Número máximo de bancos de dados exibidos na lista de bancos de dados." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Número máximo de bancos de dados" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6394,11 +6406,11 @@ msgstr "" "O número de itens que podem ser mostrados no primeiro nível da árvore de " "navegação em cada página." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Máximo de itens no primeiro nível" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6406,11 +6418,11 @@ msgstr "" "O número de itens que pode ser mostrado em cada página da árvore de " "navegação." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Máximo de itens no ramo" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6419,19 +6431,19 @@ msgstr "" "resultado conter mais linhas, os links 'Anterior' e 'Próximo' serão " "apresentados." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Número máximo de linhas a exibir" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Número máximo de tabelas exibidas na lista de tabelas." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Número máximo de tabelas" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6439,42 +6451,42 @@ msgstr "" "O número de bytes permitidos que um script pode alocar, ex. [kbd]32MB[/kbd] " "ou ([kbd]0[/kbd] para não haver limite)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Limite de memória" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" "No painel de navegação, substitui a base de dados em árvore com um seletor" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Mostrar a navegação por bases de dados como árvore" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Vincule com o painel principal selecionando a tabela ou o banco de dados " "atual." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Mostrar logo no painel de navegação." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Exibir logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL para onde a logo no painel de navegação vai direcionar." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Link URL do logo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6482,27 +6494,27 @@ msgstr "" "Abre o link da página na janela principal ([kbd]main[/kbd]) ou em uma nova " "janela ([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Alvo do link da logo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Exibir a escolha de servidor no topo do painel de navegação." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Exibe seleção de servidores" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Alvo para ícone de acesso rápido" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Alvo para segundo ícone de acesso rápido" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6510,16 +6522,16 @@ msgstr "" "Define o número mínimo de itens (tabelas, views, rotinas e eventos) para " "mostrar uma caixa de filtro." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "O número mínimo de itens para mostrar a caixa de filtro" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" "Número mínimo de tabelas para mostrar a caixa de filtro de bancos de dados" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6527,96 +6539,96 @@ msgstr "" "Agrupa itens na árvore de navegação (determinado pelo divisor definido " "abaixo)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Agrupar itens na árvore" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "String que separa bancos de dados em diferentes níveis de árvore." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Divisor de árvore de banco de dados" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "String que separa tabelas em diferentes níveis de árvore." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Divisor de árvore de tabela" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Profundidade máxima da árvore de tabelas" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Destaca o servidor sob o cursor do mouse." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Habilita destaque" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" "Se deseja oferecer a possibilidade de expansão de árvore no painel de " "navegação." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Permitir a expansão da árvore de navegação" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Número máximo de tabelas usadas recentemente; defina 0 para desabilitar." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Número máximo de tabelas favoritas; defina 0 para desabilitar." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Tabelas recentemente utilizadas" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Estes são os links de Editar, Copiar e Apagar." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Onde mostrar os links de linha de tabela" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Ordem natural" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Usar apenas ícones, apenas texto ou ambos." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Barra de navegação com ícones" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Buffer de saída GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6624,19 +6636,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Ordem de ordenação padrão" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Usar conexões persistentes para bancos de dados MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Conexões persistentes" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6646,11 +6658,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tabelas do armazenamento de configurações do phpMyAdmin faltando" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6658,11 +6670,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Aviso de diferença servidor/biblioteca" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6670,27 +6682,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Aviso de palavra reservada do MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Como mostrar o menu com abas" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Como exibir vários links de ação" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Impedir a edição de colunas BLOB e BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Proteger colunas binárias" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6701,109 +6713,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Histórico de consultas permanente" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Quantas consultas são mantidas no histórico." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Tamanho do histórico de consultas" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Mecanismo de gravação" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Lembrar a ordenação das tabelas" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Ordenação predeterminada por chave primária" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Repetir cabeçalhos" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Edição de grade: acionar ação" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Exibição relacional" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Para exibir as Opções" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Diretório de arquivos salvos" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Deixe em branco se não usado." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Pedido de autorização do servidor" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Deixe em branco para usar o padrão." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Regras de autorização do servidor" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Permitir login sem uma senha" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Permitir login como root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Fuso horário da sessão" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" @@ -6811,15 +6823,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:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Domínio HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6829,19 +6841,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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Arquivo de configuração Swekey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Método de autenticação a ser usado." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Tipo de autenticação" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6849,11 +6861,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabela de favoritos" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6861,31 +6873,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabela de informação de coluna" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Conexão compactada ao servidor MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Conexão compactada" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Tipo de conexão" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Senha do usuário controlador" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6894,11 +6906,11 @@ msgstr "" "mais informações disponíveis na [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki[/a]." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Usuário controlador" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6906,11 +6918,11 @@ msgstr "" "Um servidor alternativo para armazenar a configuração; deixe em branco para " "usar um servidor já definido." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Controle de host" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6920,15 +6932,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Porta de controle" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Oculta bancos de dados com expressão regular combinada (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6936,15 +6948,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desabilitar o uso do INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Ocultar bancos de dados" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6952,23 +6964,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:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabela de histórico das consultas SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Nome do servidor onde o MySQL Server está rodando." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Nome do servidor (hostname)" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL de logout" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6976,15 +6988,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:624 +#: libraries/config/messages.inc.php:626 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:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Tabela de buscas salvas QBE" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6992,11 +7004,11 @@ msgstr "" "Deixe em branco se não houver suporte à buscas salvas QBE, sugestão: [kbd]" "pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Tabela de colunas centrais" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -7004,15 +7016,15 @@ msgstr "" "Deixe em branco para desativar o suporte a colunas centrais, sugestão: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Tenta conectar sem senha." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Conectar sem senha" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7021,30 +7033,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Exibir apenas bancos de dados listados" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Senha para a autenticação por configuração" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "Esquema PDF: tabela de páginas" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7054,21 +7066,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Nome do banco de dados" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Porta do servidor" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7076,27 +7088,23 @@ 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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Tabelas recentemente usadas" -#: libraries/config/messages.inc.php:664 -#, fuzzy -#| msgid "" -#| "Leave blank for no \"persistent\" recently used tables across sessions, " -#| "suggested: [kbd]pma__recent[/kbd]." +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -"Deixe em branco se não houver tabela(s) persistente(s) recentemente usada(s) " -"entre as sessões, sugestão: [kbd]pma_recent[/kbd]." +"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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Tabelas favoritas" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7104,11 +7112,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Tabela de relacionamentos" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7116,33 +7124,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:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Nome da sessão de Signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL de Signon" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Socket do servidor" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Habilitar SSL para conexões no servidor MySQL." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Utilizar SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7150,11 +7158,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:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Desenho e esquema em PDF: tabela de coordenadas" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7162,11 +7170,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Exibir tabela de colunas" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7175,11 +7183,11 @@ msgstr "" "interfaces de usuário em todas as sessões, sugestão: [kbd]pma__table_uiprefs" "[/kbd]." -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabela de preferências visuais" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7187,11 +7195,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Adicionar DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7199,11 +7207,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Adicionar DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7211,19 +7219,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Adicionar DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Comandos a rastrear" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7231,11 +7239,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:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabela de rastreamento de consultas SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7243,11 +7251,11 @@ msgstr "" "Quando o mecanismo de rastreamento cria versões de tabelas e visões " "automaticamente." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Criar versões automaticamente" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7255,11 +7263,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabela de armazenamento de preferências de usuário" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7269,11 +7277,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Tabelas dos usuários" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7283,11 +7291,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Tabela de grupos de usuário" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7295,15 +7303,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Tabela de navegação de itens ocultos" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Usuário para autenticação de configuração" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7311,19 +7319,19 @@ msgstr "" "Uma descrição transparente deste servidor. Deixe em branco para exibir o " "nome do computador." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Nome completo deste servidor" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Permitir mostrar todas as linhas" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7333,47 +7341,47 @@ 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Mostrar formulário de mudança de senha" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Mostrar formulário de criação de banco de dados" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Mostrar data e hora da criação" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Mostrar data e hora da última atualização" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Mostrar data e hora da última verificação" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7381,27 +7389,27 @@ msgstr "" "Define se os tipos dos campos serão ou não exibidos inicialmente no modo " "editar/inserir." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Exibir o tipo dos campos" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Mostra campos de função" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Se uma dica será exibida ou não." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Exibir dica" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7409,68 +7417,64 @@ msgstr "" "Exibe link para saída de [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Exibir link para o phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Exibir informações detalhadas do servidor MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Mostrar consultas SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Manter caixa de consulta" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Mostrar estatísticas" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Exibir tabelas bloqueadas" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" "Um alerta é exibido na página principal se o pacote Suhosin for detectado." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Aviso do Suhosin" -#: libraries/config/messages.inc.php:774 -#, fuzzy -#| msgid "" -#| "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:776 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 " @@ -7480,13 +7484,11 @@ msgstr "" "configuração do PHP 'session.gc_maxlifetime' é menor que o valor de " "`LoginCookieValidity`." -#: libraries/config/messages.inc.php:776 -#, fuzzy -#| msgid "Login cookie validity" -msgid "Login cookie validity warning" -msgstr "Alerta de validade do cookie de login" - #: libraries/config/messages.inc.php:778 +msgid "Login cookie validity warning" +msgstr "Aviso de validade do cookie de login" + +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7494,11 +7496,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:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Colunas da caixa de texto" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7507,32 +7509,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:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Linhas da caixa de texto" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Título padrão" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7544,29 +7546,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Diretório de upload" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Permitir pesquisa no banco de dados inteiro." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Usar a pesquisa de banco de dados" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7574,27 +7576,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Habilitar aba Desenvolvedor nas configurações" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Verificar a última versão" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7606,11 +7608,11 @@ msgstr "" "servidor onde o phpMyAdmin está instalado não tiver acesso direto à " "internet. O formato é: \"hostname:portnumber\"." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "URL de Proxy" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7620,19 +7622,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Usuário de Proxy" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "A senha para autenticar no proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Senha de Proxy" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7640,47 +7642,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Chave pública para o reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Chave privada do reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Enviar relatório de erros" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Consultas executadas" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7688,7 +7690,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:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Ativar Modo de Configuração Zero" @@ -7708,44 +7710,44 @@ msgstr "Autenticação por HTTP" msgid "Signon authentication" msgstr "Autenticação Signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Planilha Open-Document" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Rápido" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Personalizado" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opções de exportação do banco de dados" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV para dados MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Texto Open-Document" @@ -7892,10 +7894,8 @@ msgid "Move Menu" msgstr "Mover Menu" #: libraries/db_designer.lib.php:416 libraries/db_designer.lib.php:419 -#, fuzzy -#| msgid "Partial texts" msgid "Pin text" -msgstr "Fixar texto" +msgstr "Texto fixado" #: libraries/db_designer.lib.php:458 msgid "Hide/Show all" @@ -7959,20 +7959,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Sem senha" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Senha:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Re-digite:" @@ -8109,8 +8109,8 @@ msgstr ", @TABLE@ se tornará o nome da tabela" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as " "strings de formatação de tempo. Adicionalmente a seguinte transformação " @@ -8671,8 +8671,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Documentação e mais informações sobre PBXT podem ser encontradas na %sPágina " "Inicial da PrimeBase XT%s." @@ -8783,18 +8783,17 @@ msgid "Go to view: %s" msgstr "Ir para a view: %s" #: libraries/import.lib.php:1382 -#, fuzzy msgid "Only single-table UPDATE and DELETE queries can be simulated." -msgstr "Você pode simular consultas UPDATE e DELETE em apenas uma tabela." +msgstr "" +"Somente pesquisas de UPDATE e DELETE em tabela-simples podem ser simuladas." #: libraries/import.lib.php:1799 -#, fuzzy msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" -"Apenas operações INSERT, UPDATE, DELETE e REPLACE contendo motor " -"transacional de tabela(s) pode(m) ser revertida(s)." +"Apenas operações SQL de INSERT, UPDATE, DELETE e REPLACE contendo tabela(s) " +"de motor transacional podem ser repetidas." #: libraries/index.lib.php:34 #, php-format @@ -9107,10 +9106,8 @@ msgid "unknown" msgstr "desconhecido" #: libraries/navigation/Navigation.class.php:54 -#, fuzzy -#| msgid "An error has occurred while loading the navigation tree" msgid "An error has occurred while loading the navigation display" -msgstr "Ocorreu um erro ao carregar a tela de navegação" +msgstr "Ocorreu um erro enquanto carrega-se a exibição de navegação" #: libraries/navigation/Navigation.class.php:187 msgid "Events:" @@ -9144,7 +9141,7 @@ msgstr "Sair" msgid "phpMyAdmin documentation" msgstr "Documentação do phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Recarregar painel de navegação" @@ -9164,8 +9161,6 @@ msgstr[0] "%s resultado encontrado" msgstr[1] "%s resultados encontrados" #: libraries/navigation/NavigationTree.class.php:1210 -#, fuzzy -#| msgid "Please select a database" msgid "Please select a database." msgstr "Por favor, selecione um banco de dados." @@ -9380,7 +9375,6 @@ msgid "Remove redundant columns" msgstr "Remover colunas redundantes" #: libraries/normalization.lib.php:215 -#, fuzzy msgid "" "Do you have a group of columns which on combining gives an existing column? " "For example, if you have first_name, last_name and full_name then combining " @@ -9388,7 +9382,7 @@ msgid "" msgstr "" "Você possui um grupo de colunas cuja combinação resulta em uma coluna " "existente? Por exemplo, se você possui nome, sobrenome e nome_completo então " -"a combinação de nome e sobrenome seria nome_completo, o que é redundante." +"combinar nome e sobrenome resulta em nome_completo, que é redundante." #: libraries/normalization.lib.php:221 msgid "" @@ -9411,7 +9405,6 @@ msgid "Move repeating groups" msgstr "Mover grupos repetidos" #: libraries/normalization.lib.php:251 -#, fuzzy msgid "" "Do you have a group of two or more columns that are closely related and are " "all repeating the same attribute? For example, a table that holds data on " @@ -9420,24 +9413,22 @@ msgid "" "should be created." msgstr "" "Você tem um grupo de duas ou mais colunas que estão intimamente relacionadas " -"e estão todas repetindo o mesmo atributo? Por exemplo, uma tabela que contém " -"dados sobre livros podem ter colunas como id_livro, autor1, autor2, autor3 e " -"assim por diante, que formam um grupo repetido. Neste caso, uma nova tabela " -"(id_livro, autor) deve ser criada." +"e estão todas repetindo o mesmo atributo? Por exemplo, uma tabela que " +"armazena dados sobre livros podem ter colunas como id_livro, autor1, autor2, " +"autor3 e assim por diante, que formam um grupo repetido. Neste caso, uma " +"nova tabela (id_livro, autor) deveria ser criada." #: libraries/normalization.lib.php:259 -#, fuzzy msgid "" "Check the columns which form a repeating group. If no such group, click on " "'No repeating group'" msgstr "" -"Verifique as colunas que formam um grupo repetido. Se não houver esse grupo, " +"Selecione as colunas que formam um grupo repetido. Se não houver mais grupo, " "clique em 'Nenhum grupo repetido'" #: libraries/normalization.lib.php:265 -#, fuzzy msgid "No repeating group" -msgstr "Nenhum grupo repetido" +msgstr "Não há grupo repetido" #: libraries/normalization.lib.php:291 msgid "Step 2." @@ -9448,26 +9439,27 @@ msgid "Find partial dependencies" msgstr "Encontre dependências parciais" #: libraries/normalization.lib.php:313 -#, fuzzy, php-format +#, php-format msgid "" "No partial dependencies possible as no non-primary column exists since " "primary key ( %1$s ) is composed of all the columns in the table." msgstr "" -"Dependências parciais não são possíveis, não há colunas não primárias, " -"porque a chave primária (%1$s) contém todas as colunas da tabela." +"Não há dependências parciais possíveis quando nenhuma coluna não-primária " +"existe desde que a chave primária ( %1$s ) seja composta por todas as " +"colunas da tabela.." #: libraries/normalization.lib.php:318 libraries/normalization.lib.php:360 msgid "Table is already in second normal form." msgstr "A tabela já está na segunda forma normal." #: libraries/normalization.lib.php:323 -#, fuzzy, php-format +#, php-format msgid "" "The primary key ( %1$s ) consists of more than one column so we need to find " "the partial dependencies." msgstr "" -"A chave primária ( %1$s ) consiste em mais de uma coluna, então precisamos " -"encontrar as dependências parciais." +"A chave primária ( %1$s ) consiste em mais de uma coluna, então nós " +"precisamos encontrar as dependências parciais." #: libraries/normalization.lib.php:327 libraries/normalization.lib.php:692 msgid "" @@ -9483,15 +9475,14 @@ msgstr "" "+ Mostre-me as possíveis dependências parciais com base nos dados da tabela" #: libraries/normalization.lib.php:335 -#, fuzzy msgid "" "For each column below, please select the minimal set of columns among " "given set whose values combined together are sufficient to determine the " "value of the column." msgstr "" -"Para cada coluna abaixo, por favor, selecione o conjunto mínimo de " -"colunas entre elas cujos valores combinados são suficientes para determinar " -"o valor da coluna." +"Para cada coluna abaixo, por favor, selecione a configuração mínima " +"de colunas dadas entre configurações cujos valores combinados são " +"suficientes para determinar o valor da coluna." #: libraries/normalization.lib.php:345 libraries/normalization.lib.php:730 #, php-format @@ -9499,12 +9490,12 @@ msgid "'%1$s' depends on:" msgstr "'%1$s' depende de:" #: libraries/normalization.lib.php:356 -#, fuzzy, php-format +#, php-format msgid "" "No partial dependencies possible as the primary key ( %1$s ) has just one " "column." msgstr "" -"Nenhuma dependência parcial possível como a chave primária ( %1$s ) tem " +"Nenhuma dependência parcial possível quando a chave primária ( %1$s ) tem " "apenas uma coluna." #: libraries/normalization.lib.php:381 @@ -9540,11 +9531,9 @@ msgid "The third step of normalization is complete." msgstr "A terceira etapa da normalização está completa." #: libraries/normalization.lib.php:642 -#, fuzzy, php-format -#| msgid "Selected target tables have been synchronized with source tables." +#, php-format msgid "Selected repeating group has been moved to the table '%s'" -msgstr "" -"Grupo(s) repetido(s) selecionado(s) foi(ram) movidos para a tabela '%s'" +msgstr "Grupo repetido selecionado tem sido movido para a tabela '%s'" #: libraries/normalization.lib.php:689 msgid "Step 3." @@ -9555,26 +9544,25 @@ msgid "Find transitive dependencies" msgstr "Localizar dependências transitivas" #: libraries/normalization.lib.php:696 -#, fuzzy msgid "" "For each column below, please select the minimal set of columns among " "given set whose values combined together are sufficient to determine the " "value of the column.
Note: A column may have no transitive dependency, " "in that case you don't have to select any." msgstr "" -"Para cada coluna abaixo, por favor, selecione o conjunto mínimo de " -"colunas entre elas cujos valores combinados são suficientes para determinar " -"o valor da coluna.
Nota: uma coluna não pode ter nenhuma dependência " -"transitiva, nesse caso não é obrigatório selecionar uma." +"Para cada coluna abaixo, por favor selecione a configuração mínima de " +"colunas dadas entre configurações cujos valores combinados são suficientes " +"para determinar o valor da coluna.
Nota: uma coluna pode não ter " +"nenhuma dependência transitiva, nesse caso você não terá que selecionar " +"qualquer uma." #: libraries/normalization.lib.php:743 -#, fuzzy msgid "" "No Transitive dependencies possible as the table doesn't have any non " "primary key columns" msgstr "" -"Não há dependências transitivas possíveis devido a tabela não possuir " -"quaisquer colunas de chave primária." +"Não há dependências transitivas possíveis quando a tabela não possui nenhuma " +"coluna de chave não primária" #: libraries/normalization.lib.php:747 msgid "Table is already in Third normal form!" @@ -9585,9 +9573,8 @@ msgid "Improve table structure (Normalization):" msgstr "Melhore a estrutura da tabela (Normalização):" #: libraries/normalization.lib.php:771 -#, fuzzy msgid "Select up to what step you want to normalize" -msgstr "Selecione até o passo você deseja normalizar" +msgstr "Selecione até qual passo você quiser normalizar" #: libraries/normalization.lib.php:774 msgid "Second step of normalization (1NF+2NF)" @@ -9849,11 +9836,11 @@ msgstr "Bem-vindo ao %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Você provavelmente não criou o arquivo de configuração. Você deve usar o %1" -"$sscript de setup%2$s para criar um." +"Você provavelmente não criou o arquivo de configuração. Você deve usar o " +"%1$sscript de setup%2$s para criar um." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10083,7 +10070,7 @@ msgstr "Colocar os nomes das colunas na primeira linha:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Host:" @@ -10232,10 +10219,6 @@ msgstr "" "Exemplo: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)" #: libraries/plugins/export/ExportSql.class.php:403 -#, fuzzy -#| msgid "" -#| "both of the above
      Example: INSERT INTO " -#| "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B,col_C) VALUES (1,2,3), (4,5,6), (7,8,9)" @@ -10275,16 +10258,14 @@ msgstr "Parece que seu banco de dados utiliza procedimentos;" #: libraries/plugins/export/ExportSql.class.php:551 #: libraries/plugins/export/ExportSql.class.php:1260 #: libraries/plugins/export/ExportSql.class.php:1799 -#, fuzzy msgid "alias export may not work reliably in all cases." -msgstr "exportação de alias pode não funcionar corretamente em todos os casos." +msgstr "exportar alias pode não funcionar confiantemente em todos os casos." #: libraries/plugins/export/ExportSql.class.php:548 msgid "It appears your database uses functions;" msgstr "Parece que seu banco de dados utiliza funções;" #: libraries/plugins/export/ExportSql.class.php:1257 -#, fuzzy msgid "It appears your database uses views;" msgstr "Parece que seu banco de dados utiliza visões;" @@ -10321,9 +10302,8 @@ msgid "RELATIONS FOR TABLE" msgstr "RELACIONAMENTOS PARA TABELAS" #: libraries/plugins/export/ExportSql.class.php:1796 -#, fuzzy msgid "It appears your table uses triggers;" -msgstr "Parece que sua tabela utiliza gatilhos;" +msgstr "Isso demonstra que sua tabela utiliza gatilhos;" #: libraries/plugins/export/ExportSql.class.php:1828 #, php-format @@ -10526,8 +10506,7 @@ msgid "PDF export page" msgstr "Página de exportação PDF" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:474 -#, fuzzy, php-format -#| msgid "Schema of the %s database - Page %s" +#, php-format msgid "Schema of the %s database" msgstr "Esquema de banco de dados %s" @@ -11136,22 +11115,22 @@ msgstr "" "seção [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Nome de usuário:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nome do usuário" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Senha" @@ -11179,10 +11158,10 @@ msgstr "ID do servidor" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Servidor" @@ -11196,38 +11175,38 @@ msgstr "" "visíveis nesta lista." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Qualquer host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Este host" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Qualquer usuário" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Usar campo de texto:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Usar tabela Host" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11236,7 +11215,7 @@ msgstr "" "na tabela Host são usados no lugar." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Re-digite" @@ -11968,7 +11947,7 @@ msgstr "Nenhum privilégio" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Grupo de usuários" @@ -12042,14 +12021,14 @@ msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilégios específicos de tabela" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Nota: os nomes de privilégios do MySQL são expressos em inglês." @@ -12058,7 +12037,7 @@ msgid "Administration" msgstr "Administração" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Privilégios globais" @@ -12067,7 +12046,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilégios específicos de banco de dados" @@ -12086,18 +12065,18 @@ msgstr "" "Permitir adicionar usuários e privilégios sem recarregar a tabela de " "privilégios." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Informação de login" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Usar campo texto" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12105,247 +12084,247 @@ msgstr "" "Uma conta já existe com o mesmo nome de usuário, mas possivelmente com um " "nome de servidor diferente." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Não mudar a senha" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "A senha para %s foi modificada com sucesso." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Você revogou os privilégios para %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Adicionar usuário" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Banco de dados para usuário" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Criar banco de dados com o mesmo nome e conceder todos os privilégios." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Conceder todos os privilégios no banco de dados '%s'." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Usuários que têm acesso à '%s'" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Usuário foi adicionado." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Usuário" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Conceder/Grant" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Privilégio insuficiente para exibir o(s) usuário(s)." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Nenhum usuário encontrado." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Qualquer" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "específico de banco de dados" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "coringa" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "específico de tabela" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Editar Privilégios" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Revogar" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Editar grupo de usuários" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… manter o antigo." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… apagar o antigo da tabela de usuários." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… revogar todos privilégios ativos do usuário antigo e depois apagá-lo." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… apagar o antigo da tabela de usuários e depois recarregar os privilégios." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Mudar informações de login / Copiar usuário" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Criar um novo usuário com os mesmos privilégios e …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilégios específicos de coluna" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database:" msgid "Add privileges on the following database(s):" msgstr "Adicionar privilégio(s) no(s) seguinte(s) banco(s) de dado(s):" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Coringas % e _ precisam ser precedidos com uma \\ para serem usados " "literalmente." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Adicionar privilégios na seguinte tabela:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Remover os usuários selecionados" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios ativos dos usuários e depois apagar eles." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar os bancos de dados que possem o mesmo nome dos usuários." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Nenhum usuário selecionado para exclusão!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Recarregando os privilégios" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Os usuários selecionados foram apagados com sucesso." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Você mudou os privilégios para %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Eliminando %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "O usuário %s já existe!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Privilégios para %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Novo usuário" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Editar privilégios:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" "Nota: Você está tentando editar os privilégios do usuário da sessão atual." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Visão geral dos usuários" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela " "de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos " "privilégios que o servidor usa se eles foram mudados manualmente. Neste " "caso, você deve usar %sAtualizar privilégios%s antes de continuar." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Você adicionou um novo usuário." @@ -14161,21 +14140,21 @@ msgstr "Opção de índice:" msgid "Key block size:" msgstr "Tamanho do bloco chave:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tipo de índice:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Analisador:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Cometário:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Arraste para reordenar" @@ -15215,8 +15194,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "A relação entre a memória livre do cache de consultas e o tamanho total do " "cache de consultas é de %s%%. Deveria ser maior do que 80%%" @@ -15371,8 +15350,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% de todas as ordenações criam tabelas temporárias, este valor deveria " "ser menor do que 10%%." @@ -15543,8 +15522,8 @@ msgstr "" #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "" -"Os valores atuais de tmp_table_size são de: %s e de max_heap_table_size de: %" -"s" +"Os valores atuais de tmp_table_size são de: %s e de max_heap_table_size de: " +"%s" #: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" @@ -17118,8 +17097,8 @@ msgstr "concurrent_insert está com valor 0" #~ "Suggest a database name on the \"Create Database\" form (if possible) or " #~ "keep the text field empty" #~ msgstr "" -#~ "Sugerir um nome do banco de dados no formulário \"Criar Banco de Dados%" -#~ "quot; (se possível) ou manter o campo texto vazio" +#~ "Sugerir um nome do banco de dados no formulário \"Criar Banco de Dados" +#~ "%quot; (se possível) ou manter o campo texto vazio" #~ msgid "Suggest new database name" #~ msgstr "Sugerir nome para o banco de dados" diff --git a/po/ro.po b/po/ro.po index 5bff030278..74f0d5ba87 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-10 20:09+0200\n" "Last-Translator: Raul Molnar \n" "Language-Team: Romanian \n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" "X-Generator: Weblate 2.3-dev\n" @@ -69,7 +69,7 @@ msgstr "Comentarii tabel:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "Coloană" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "Leagă către" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "Primar" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "Nu" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -268,14 +268,14 @@ msgstr "" "dezactivate. Pentru a afla de ce, click %saici%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabel" @@ -288,7 +288,7 @@ msgid "Rows" msgstr "Rânduri" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Dimensiune" @@ -379,9 +379,9 @@ msgstr "Stare" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -578,15 +578,15 @@ msgstr "Adaugă geometrie" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -619,11 +619,11 @@ msgstr "Parametrii incompleți" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %" -"sdocumentație%s pentru căi de ocolire a acestei limite." +"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " +"%sdocumentație%s pentru căi de ocolire a acestei limite." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -713,7 +713,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Înapoi" @@ -737,7 +737,7 @@ msgid "General Settings" msgstr "Setări generale" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Modifică parola" @@ -812,7 +812,7 @@ msgstr "Informații despre versiune:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Documentație" @@ -1087,7 +1087,7 @@ msgstr "Adaugă index" msgid "Edit Index" msgstr "Modifică index" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Adaugă %s coloane la index" @@ -1116,7 +1116,7 @@ msgstr "Trebuie să adăugați cel puțin un câmp." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Previzualizare SQL" @@ -1145,12 +1145,12 @@ msgstr "Câmpul nume gazdă nu a fost completat!" msgid "The user name is empty!" msgstr "Câmpul nume de utilizator nu a fost completat!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Câmpul parolă nu a fost completat!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Parolele nu coincid!" @@ -1347,7 +1347,7 @@ msgstr "Adăugați cel puțin o variabilă la serie!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1645,7 +1645,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1858,7 +1858,7 @@ msgstr "Arată caseta de interogare" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2111,7 +2111,7 @@ msgstr "Mărime pointer date" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignoră" @@ -2296,7 +2296,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Arată tot" @@ -2312,8 +2312,8 @@ msgstr "" #: js/messages.php:446 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -"Vă rugăm să introduceţi un şir hexazecimal valid. Caracterele valide sunt 0-" -"9, A-F." +"Vă rugăm să introduceţi un şir hexazecimal valid. Caracterele valide sunt " +"0-9, A-F." #: js/messages.php:447 msgid "" @@ -2398,7 +2398,7 @@ msgstr "Ascunde panou" msgid "Show hidden navigation tree items." msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Link-ul cu panoul principal" @@ -2906,16 +2906,16 @@ msgid "Delete" msgstr "Șterge" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3033,7 +3033,7 @@ msgid "During current session" msgstr "În timpul sesiunii curente" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3414,8 +3414,8 @@ msgstr "Comanda SQL a fost executată cu succes." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." @@ -3451,6 +3451,7 @@ msgstr "Cele bifate:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3466,12 +3467,12 @@ msgstr "Schimbă" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3661,7 +3662,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:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3676,11 +3677,11 @@ msgstr "Vizualizare" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3696,7 +3697,7 @@ msgstr "Structură" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3722,9 +3723,9 @@ msgstr "Inserare" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Drepturi de acces" @@ -3784,9 +3785,9 @@ msgid "Central columns" msgstr "Coloane centrale" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Baze de date" @@ -3897,7 +3898,7 @@ msgid "Recent" msgstr "Recente" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Tabele favorite" @@ -3970,7 +3971,7 @@ msgstr "Sortare" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4339,14 +4340,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4619,7 +4620,7 @@ msgstr "Mărime maximă: %s%s" msgid "MySQL said: " msgstr "MySQL zice: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Explică SQL" @@ -4631,7 +4632,7 @@ msgstr "Sari peste explicarea SQL" msgid "Without PHP Code" msgstr "fără cod PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Creează cod PHP" @@ -4746,13 +4747,13 @@ msgstr "Descriere" msgid "Use this value" msgstr "Folosește această valoare" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5155,7 +5156,7 @@ msgid "Set value: %s" msgstr "Seteaza valoarea: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Restaurează valoarea implicită" @@ -5553,27 +5554,39 @@ msgstr "Tab-ul care este afișat când se intră intr-un tabel" msgid "Default table tab" msgstr "Pagina implicită a tabelului" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Utilizați apostroful pentru numele tabelelor și a coloanelor" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Utilizați apostroful pentru numele tabelelor și a coloanelor" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Propune structura de tabele" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Propune structura de tabele" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Afișează listarea server-elor ca o listă, în loc de un drop down." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Afișează server-ele ca o listă" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5581,11 +5594,11 @@ msgstr "" "Dezactivează operațiile în masă de mentenanță a tabelelor, precum " "optimizarea sau repararea tabelelor selectate dintr-o bază de date." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Dezactivează mentenanța multi tabel" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5593,39 +5606,39 @@ msgstr "" "Setează numărul maxim de secunde pentru care un script are voie să ruleze " "([kbd]0[/kbd] pentru nicio limită)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Timpul maxim de execuție" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Comenzi" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Salvează ca fișier" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Setul de caractere al fișierului" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Compresie" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5635,64 +5648,64 @@ msgstr "Compresie" msgid "Put columns names in the first row" msgstr "Pune numele coloanelor în primul rând" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Coloane încadrate cu" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "câmpuri realizate de" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Înlocuiește NULL cu" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Șterge caracterele terminatoare de linie CRLF din cadrul coloanelor" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Coloane terminate cu" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Linii terminate cu" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Ediția Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Șablon nume bază de date" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Șablon nume server" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Șablon nume tabel" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5701,138 +5714,138 @@ msgstr "Șablon nume tabel" msgid "Dump table" msgstr "Salvează tabel" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Include captură tabel" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Captură tabel" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Continuare captură tabel" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Tasta label" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Tip MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Legături" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Metodă de export" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Salvează pe server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Suprascrie fișier(e) existent(e)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Șablon reține nume fișier" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Utilizați apostroful pentru numele tabelelor și a coloanelor" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Regim de compatibilitate SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "opțiuni CREARE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Creare/reînnoire/verificare date" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Folosește inserări întîrziate" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Dezactivare verificări de cheie străine" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exportă vizualizările ca tabele" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Adăugare %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Utilizați hexazecimale pentru BINARY & BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Utilizați ignorare inserări" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Sintaxa ce va fi folosită la inserarea datelor" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Lungimea maximă a interogării create" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Tip de exportare" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Cuprinde exportarea într-o tranzacție" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Timp de export în format UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" "Forțează utilizarea unei conexiuni securizate în timpul folosirii phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Forțează conexiunea SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -5844,145 +5857,145 @@ msgstr "" "Ordinea de sortare pentru elementele dintr-un dropdown pentru chei străine; " "[kbd]conținut[/kbd] sunt datele referite, [kbd]id[/kbd] este valoarea cheii" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Ordinea din dropdown-ul pentru chei străine" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "Un dropdown va fi folosit dacă sunt prezente mai puține elemente" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Limită de chei străine" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Regim de navigare" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Personalizează modul de navigare." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Particularizați opțiunile implicite." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Dezvoltator" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Setări pentru dezvoltatorii phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Regim de redactare" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Personalizează modul de editare." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Exportă valorile implicite" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Particularizați opțiunile implicite pentru exportare." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funcționalități" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "General" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Setați unele opțiuni utilizate în mod obișnuit." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importă valorile implicite" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Particularizează opțiunile obișnuite implicite pentru importare." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importă / exportă" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" "Setează directoarele de importare și exportare și opțiunile de compresie." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Opțiuni de afișare a bazelor de date." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Cadru de navigare" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Personalizează aspectul cadrului de navigare." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servere" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Opțiuni de afișare a serverelor." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Opțiuni de afișare a tabelelor." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Cadrul principal" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Alte setări de bază" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Setări care nu se potrivesc în altă parte." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Titluri de pagini" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5991,19 +6004,19 @@ msgstr "" "[doc@cfg_TitleTable] documentația [/doc] pentru siruri de caractere magice " "care pot fi utilizate pentru a obține valori speciale." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Particularizaţi opţiunile fereastrei de interogare" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Securitate" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6011,23 +6024,23 @@ msgstr "" "Vă rugăm să rețineți faptul că phpMyAdmin este doar o interfață de " "utilizator și caracteristicile sale nu limitează MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Setări de bază" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autentificare" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Setările autentificării." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Configurarea serverului" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6035,15 +6048,15 @@ msgstr "" "Configurarea avansată a serverului, nu schimbați aceste opțiuni decât dacă " "știți pentru ce sunt acestea." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Introduceți parametrii de conexiune la server." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Configurarea stocării" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -6058,12 +6071,12 @@ msgstr "" "caracteristici suplimentare, a se vedea [doc@linked-tables]depozitarea " "configurației phpMyAdmin[/doc] în documentație" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 #, fuzzy msgid "Changes tracking" msgstr "Modifică urmărirea" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6071,128 +6084,128 @@ msgstr "" "Urmărirea modificărilor făcute în baza de date. Necesită depozitarea " "configurației phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Particularizați opțiunile pentru exportare" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Personalizează valorile implicite pentru importare" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Personalizați cadrul de navigare" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Personalizați cadrul principal" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Interogări SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "Cutie interogare SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy msgid "Customize links shown in SQL Query boxes." msgstr "Personalizează link-urile afișate în cutiile de interogare SQL" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "Setări pentru interogările SQL" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "Pornire" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "Personalizează pagina de pornire" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "Bază de date pentru utilizatorul" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "Bază de date pentru utilizatorul" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Tab-uri" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Alegeți cum doriți să funcționeze tab-urile" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Schema relațională" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Mărime hîrtie" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Utilizare câmp text" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy msgid "Customize text input fields." msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Customize default options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Avertismente" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Dezactivează unele dintre avertismentele afișate de phpMyAdmin" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " @@ -6204,15 +6217,15 @@ msgstr "" "Permite compresia [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] pentru " "operațiile de import și export" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Parametrii suplimentari pentru iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6224,11 +6237,11 @@ msgstr "" "Dacă opțiunea este activată, phpMyAdmin continuă calcularea interogărilor cu " "mai multe declarații, chiar dacă una dintre interogări nu a reușit" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignoră erorile pentru declarațiile multiple" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -6239,28 +6252,28 @@ msgstr "" "apropie de limita de timp. Aceasta poate fi o metodă bună de a importa " "fișiere mari, deși poate strica tranzacții." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Import parțial: permite întreruperi" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Dezactivare verificări de cheie străine" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Nu abandona la întâmpinarea unei erori INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Înlocuiește datele tabelului cu fișier" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6272,64 +6285,64 @@ msgstr "" "Formatul implicit; fiți conștienți de faptul că această listă depinde de " "locație (bază de date, tabel) și numai SQL este întotdeauna disponibil" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formatul fișierului importat" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Folosește cuvîntul-cheie LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Pune numele coloanelor în primul rând" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Nu importa rânduri goale" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importă procentele ca zecimale (12.00% ca .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "Numărul de interogări peste care să sari de la început" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Import parțial: sari peste interogări" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nu folosi AUTO_INCREMENT pentru valorile de zero" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 #, fuzzy msgid "Initial state for sliders" msgstr "Starea inițială pentru slidere" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "Câte rânduri pot fi inserate deodată" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Numărul de rânduri inserate" # Numărul maxim de caractere afișate în orice coloană non-numerică în vederea de cautare -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "" #| "Maximum number of characters shown in any non-numeric column on browse " @@ -6340,11 +6353,11 @@ msgstr "" "Numărul maxim de caractere afișate în orice coloană non-numerică în view-ul " "de browse" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Limitează caracterele de pe coloană" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6355,11 +6368,11 @@ msgstr "" "la FALSE facilitează uitarea delogării de pe alte servere când ești conectat " "la mai multe servere." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Șterge toate cookie-urile la delogare" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6371,11 +6384,11 @@ msgstr "" "Definiți dacă logarea anterioară ar trebui să fie amintită sau nu în modul " "de autentificare prin cookie-uri" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Amintește nume de utilizator" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6387,79 +6400,79 @@ msgstr "" "curentă și va fi șters îndată ce se închide fereastra browser-ului. Acest " "lucru este recomandat pentru mediile nesigure." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 #, fuzzy msgid "Login cookie store" msgstr "Locul de depozitarea al cookie-ului de login" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "Definește cât timp (în secunde) un cookie de login este valid" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Validitatea cookie-ului de login" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "Mărime dublă a textarea-ului pentru coloanele LONGTEXT" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Textarea-uri mai mari pentru LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Numărul maxim de caractere folosite când se afișează o interogare SQL" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Lungimea maximă de afișare SQL" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Utilizatorii nu pot seta o valoare mai mare" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." msgstr "Numărul maxim de tabele afișate în lista de tabele" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Numărul maxim de baze de date" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for input field" msgid "Maximum items on first level" msgstr "Dimensiunea maximă a câmpului de intrare" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6468,21 +6481,21 @@ msgstr "" "de rezultate conține mai multe rânduri, link-urile de \"Anterior\" și " "\"Următor\" vor fi afișate." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Numărul maxim de rânduri afișate" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "Numărul maxim de tabele afișate în lista de tabele" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Numărul maxim de tabele" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6494,45 +6507,45 @@ msgstr "" "Numărul de bytes pe care un script are voie sa îl aloce, ex: [kbd]32M[/kbd] " "([kbd]0[/kbd] pentru nicio limită)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Limita de memorie" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "Afișează logo în cadrul din stânga" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Afișează logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to." msgstr "URL-ul către care va indica logo-ul din cadrul de navigare" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL-ul către care indică link-ul logo-ului" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -6541,11 +6554,11 @@ msgstr "" "Deschide pagina link-ată în fereastra principală ([kbd]main[/kbd]) sau într-" "o fereastră nouă ([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Ținta link-ului din logo" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." @@ -6553,21 +6566,21 @@ msgstr "" "Afișează meniul de alegere a server-ului în partea de sus a cadrului din " "stânga" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Afișează colecția de servere" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Ținta iconiței de acces rapid" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Ținta iconiței de acces rapid" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "" @@ -6575,19 +6588,19 @@ msgid "" "display a filter box." msgstr "Numărul minim de tabele pentru a afişa caseta cu filtrul de tabele" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of items to display the filter box" msgstr "Numărul minim de tabele pentru a afişa caseta cu filtrul de tabele" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of databases to display the database filter box" msgstr "Numărul minim de tabele pentru a afişa caseta cu filtrul de tabele" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " @@ -6599,85 +6612,85 @@ msgstr "" "Doar versiunea light; afișează bazele de date într-un arbore (determinat de " "separatorul definit mai jos)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy msgid "String that separates databases into different tree levels." msgstr "" "Șir de caractere care separă bazele de date în diferite niveluri ale " "arborelui" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Separator arbore baze de date" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "" "Șir de caractere care separă tabelele în diferite niveluri ale arborelui" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Separator arbore tabele" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Adâncimea maximă a arborelui de tabele" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "Evidențiați server-ul deasupra căruia se află cursorul mouse-ului" # Activați evidențierea -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Activați highlighting-ul" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy msgid "Enable navigation tree expansion" msgstr "bară de navigare cu iconițe" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Numărul maxim de tabele recent folosite; setați 0 pentru dezactivare" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Numărul maxim de tabele recent folosite; setați 0 pentru dezactivare" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Tabele recent folosite" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "Acestea sunt link-urile de Editare, Copiere și Ștergere" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 #, fuzzy 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:489 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Use natural order for sorting table and database names" msgid "Use natural order for sorting table and database names." @@ -6685,35 +6698,35 @@ msgstr "" "Folosește ordinea naturală pentru sortarea numelor tabelelor și bazelor de " "date" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Ordine naturală" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, 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:492 +#: libraries/config/messages.inc.php:494 #, fuzzy msgid "Table navigation bar" msgstr "bară de navigare cu iconițe" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, 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:495 +#: libraries/config/messages.inc.php:497 #, fuzzy msgid "GZip output buffering" msgstr "GZip output buffering" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -6725,21 +6738,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Ordine de sortare implicită" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, 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:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Conexiuni persistente" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy msgid "" "Disable the default warning that is displayed on the database details " @@ -6750,11 +6763,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tabele de stocare a configurării phpMyAdmin absente" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -6766,11 +6779,11 @@ msgstr "" "Dezactivează avertismentul implicit care este afișat dacă mcrypt lipsește " "pentru autentificarea prin cookie-uri" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy msgid "" "Disable the default warning that is displayed on the Structure page if " @@ -6780,31 +6793,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 #, 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:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Protejează coloanele binare" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6815,21 +6828,21 @@ msgstr "" "folosesc funcții JS pentru afișarea istoriei interogprilor ( pierdute la " "închiderea ferestrei )." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Istoric interogări permanent" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, 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:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Lungimea istoriei de interogări" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, fuzzy #| msgid "Select which functions will be used for character set conversion" msgid "Select which functions will be used for character set conversion." @@ -6837,11 +6850,11 @@ msgstr "" "Selectați care funcții vor fi folosite pentru conversia seturilor de " "caractere" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Motor de înregistrare" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, fuzzy #| msgid "When browsing tables, the sorting of each table is remembered" msgid "When browsing tables, the sorting of each table is remembered." @@ -6849,21 +6862,21 @@ msgstr "" "Când se vizualizează tabele, ordinea de sortare a fiecărui tabel este " "reținută" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Reține sortarea tabelei" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Ordine de sortare implicită" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -6873,97 +6886,97 @@ msgstr "" "Repetă header-ul la fiecare X celule, [kbd]0[/kbd] dezactivează această " "opțiune" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Repetă header-ul" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Afișarea câmpului relațional" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Opțiuni de afișare a serverelor." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 #, 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:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Directorul de salvări" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, 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:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Ordinea de autorizare a host-urilor" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, 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:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Reguli de autorizare a host-urilor" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Permite logările fără parolă" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Permite autentificarea ca „root”" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Valoare sesiune" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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:565 +#: libraries/config/messages.inc.php:567 #, fuzzy msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -6978,21 +6991,21 @@ msgstr "" "autentificarea hardware SweKey [/a] (ce nu se află în rădăcină; sugestie: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Fișierul de configurare SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "Metoda de autentificare de utilizat" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" @@ -7004,11 +7017,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabelul de bookmark-uri" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -7020,21 +7033,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabelul cu informații despre coloane" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Comprimă conexiunea" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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." @@ -7042,16 +7055,16 @@ msgstr "" "Cum se realizează conexiunea la server, lăsați [kbd]tcp[/kbd] dacă nu " "sunteți sigur" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Tipul conexiunii" # Parola pentru utilizatorul de control -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Parola pentru control user" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7065,13 +7078,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:594 +#: libraries/config/messages.inc.php:596 #, 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:596 +#: libraries/config/messages.inc.php:598 #, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " @@ -7084,12 +7097,12 @@ msgstr "" "a utiliza host-ul deja definit" # Gazdă de control -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 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:601 +#: libraries/config/messages.inc.php:603 #, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " @@ -7103,19 +7116,19 @@ msgstr "" "a utiliza host-ul deja definit" # Gazdă de control -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control host" msgid "Control port" msgstr "Gazdă de control" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, 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:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7123,15 +7136,15 @@ msgstr "" "Mai multe informații pe [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" "PMA bug tracker[/a] și pe [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Dezactivează folosirea INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Ascunde baze de date" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7143,26 +7156,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:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabelă istoric interogări SQL" # Numele gazdei pe care rulează serverul MySQL -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, 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:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Numele de gazdă al serverului" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL-ul pentru delogare" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 #, fuzzy #| msgid "" #| "Limits number of table preferences which are stored in database, the " @@ -7174,15 +7187,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:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Numărul maxim de preferințe ale tabelelor de stocat" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" @@ -7191,13 +7204,13 @@ msgstr "" "Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns table" msgstr "Coloane centrale" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy msgid "" "Leave blank for no central columns support, suggested: [kbd]" @@ -7206,17 +7219,17 @@ msgstr "" "Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "Încearcă conectarea fără parolă" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Conectează fără parolă" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -7235,21 +7248,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Afișează doar bazele de date listate" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Parola pentru „config auth”" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." @@ -7257,12 +7270,12 @@ msgstr "" "Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 #, fuzzy msgid "PDF schema: pages table" msgstr "PDF schema: tabela de pagini" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7278,24 +7291,24 @@ msgstr "" "complete. Lăsați necompletat dacă nu doriți suport. Sugestie: [kbd]phpmyadmin" "[/kbd]" -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nume bază de date" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Portul serverului" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7307,11 +7320,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Tabel folosit recent" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7323,13 +7336,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:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Tabele favorite" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7341,12 +7354,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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Tabel relațional" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7358,35 +7371,35 @@ msgstr "" "Vezi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] pentru un exemplu" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 #, fuzzy msgid "Signon session name" msgstr "Numele sesiunii signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 #, fuzzy msgid "Signon URL" msgstr "ULR-ul signon" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Soclul serverului" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, fuzzy msgid "Enable SSL for connection to MySQL server." msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Utilizează SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7395,13 +7408,13 @@ msgstr "" "Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF schema: coordonatele tabelului" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " @@ -7413,13 +7426,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:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Afișează tabelul de coloane" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables'UI preferences across sessions, " @@ -7432,11 +7445,11 @@ msgstr "" "Interfeței cu Utilizatorul ale tabelului peste sesiuni, sugestie: [kbd]" "pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Preferințele Interfeței cu Utilizatorul ale tabelului" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7444,11 +7457,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Adaugă DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7456,11 +7469,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Adaugă DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7468,21 +7481,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Adaugă DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Declarații de urmărit" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -7495,11 +7508,11 @@ msgstr "" "sugestie: [kbd]pma_tracking[/kbd]" # Tabelul de urmărire interogări SQL -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabelul de tracking interogări SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7507,13 +7520,13 @@ msgstr "" "Dacă mecanismul de urmărire creează versiuni pentru tabele și vizualizări în " "mod automat." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Regim de recuperare automată" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7525,37 +7538,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabelul de stocare a preferințelor utilizatorului" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Utilizare tabele" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Utilizare tabel gazde" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7567,15 +7580,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Utilizator pentru „config auth”" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7584,22 +7597,22 @@ msgstr "" "afișa numele de gazdă în loc." # Numele "pe larg" al acestui server -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Numele \"verbose\" al acestui server" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Permite afișarea tuturor rândurilor" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy #| msgid "" #| "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -7616,44 +7629,44 @@ msgstr "" "de configurare; nu se limitează capacitatea de a executa aceeași comandă " "direct" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Arată formularul de schimbare a parolei" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Arată formularul de creare bază de date" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Arată informația PHP" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy msgid "Show Last check timestamp" msgstr "Afișează stare sclav" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 #, fuzzy #| msgid "" #| "Defines whether or not type fields should be initially displayed in edit/" @@ -7665,33 +7678,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:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Afișează tipurile câmpurilor" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Afișează câmpurile de funcții" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, 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:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Arată indiciul" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7703,15 +7716,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:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Afișează link-ul phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Afișează informații detaliate despre serverul MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -7721,11 +7734,11 @@ msgstr "" "Definește dacă interogările SQL generate de phpMyAdmin ar trebui să fie " "afișate" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Afișează interogările SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 #, fuzzy #| msgid "" #| "Defines whether the query box should stay on-screen after its submission" @@ -7734,11 +7747,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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Reține căsuța de interogare" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, fuzzy #| msgid "Allow to display database and table statistics (eg. space usage)" msgid "Allow to display database and table statistics (eg. space usage)." @@ -7746,11 +7759,11 @@ msgstr "" "Permite afișarea statisticilor pentru baze de date și tabeluri (utilizarea " "spațiului de exemplu)" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Afișează statistici" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy #| msgid "" #| "Mark used tables and make it possible to show databases with locked tables" @@ -7760,22 +7773,22 @@ msgstr "" "Marchează tabelele folosite și fă posibilă afișarea bazelor de date cu " "tabele zăvorâte" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Sari peste tabelele zăvorâte" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 #, fuzzy msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" "Un avertisment este afișat pe prima pagina dacă Suhosin este descoperit" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 #, fuzzy msgid "Suhosin warning" msgstr "Avertizare Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy msgid "" "Disable the default warning that is displayed on the main page if the value " @@ -7786,13 +7799,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:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Validitatea cookie-ului de login" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 #, fuzzy #| msgid "" #| "Textarea size (columns) in edit mode, this value will be emphasized for " @@ -7805,11 +7818,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:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Coloane textarea" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 #, fuzzy #| msgid "" #| "Textarea size (rows) in edit mode, this value will be emphasized for SQL " @@ -7822,39 +7835,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:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Rânduri textarea" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 #, 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:784 +#: libraries/config/messages.inc.php:786 #, 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Titlu implicit" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 #, 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:788 +#: libraries/config/messages.inc.php:790 #, 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:790 +#: libraries/config/messages.inc.php:792 #, fuzzy #| msgid "" #| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following " @@ -7872,32 +7885,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Lista proxy-urilor de încredere pentru IP allow/deny" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 #, fuzzy msgid "Upload directory" msgstr "Directorul de bază pentru date" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, 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:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Folosiți căutarea în baza de date" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 #, fuzzy #| msgid "" #| "When disabled, users cannot set any of the options below, regardless of " @@ -7909,29 +7922,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Activați tab-ul Developer în setări" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Verificați pentru ultima versiune" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 #, 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7939,33 +7952,33 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Nume utilizator:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Parola" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -7977,56 +7990,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 #, 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:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "Portul serverului" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "Comanda SQL" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8048,48 +8061,48 @@ msgstr "Autentificare HTTP" msgid "Signon authentication" msgstr "Autentificare Signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV folosind LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Foaie de calcul Open Document" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Rapid" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Culoare personalizată" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "Date CSV pentru MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8332,20 +8345,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Nu există parolă" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Parolă:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8503,17 +8516,17 @@ msgstr ", @TABLE@ va deveni numele tabelei" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: %3" -#| "$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: " +#| "%3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Această valoare este interpretată folosind %1$sstrftime%2$s, ca sa puteţi " "folosi şiruri de formatare a timpului. În plus, următoarele transformări vor " -"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ%5" -"$s pentru detalii." +"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ" +"%5$s pentru detalii." #: libraries/display_export.lib.php:526 msgid "use this for future exports" @@ -9085,8 +9098,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9579,7 +9592,7 @@ msgstr "Deconectare" msgid "phpMyAdmin documentation" msgstr "Documentație phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "Personalizează cadrul principal" @@ -10287,8 +10300,8 @@ msgstr "Bine ați venit la %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Motivul probabil pentru aceasta este că nu ați creat un fișier de " "configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " @@ -10553,7 +10566,7 @@ msgstr "Pune numele coloanelor în primul rând" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11644,7 +11657,7 @@ msgstr "" "[mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11652,16 +11665,16 @@ msgstr "Nume utilizator" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Nume utilizator" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Parola" @@ -11691,10 +11704,10 @@ msgstr "ID server" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Gazda" @@ -11706,40 +11719,40 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Oricare gazdă" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Local" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Această gazdă" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Oricare utilizator" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Utilizare câmp text" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Utilizare tabel gazde" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11748,7 +11761,7 @@ msgstr "" "tabela Host sunt folosite în schimb." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Re-tastează" @@ -12576,7 +12589,7 @@ msgstr "Nici unul(a)" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12652,14 +12665,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12670,7 +12683,7 @@ msgid "Administration" msgstr "Administrare" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Privilegii globale" @@ -12681,7 +12694,7 @@ msgid "Global" msgstr "global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" @@ -12700,281 +12713,281 @@ msgstr "" "Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor " "de drepturi." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Informații de autentificare" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Utilizare câmp text" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Nu schimbați parola" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Parola pentru %s a fost schimbată cu succes." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Drepturile tale au fost revocate pentru %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Adaugă utilizator" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Bază de date pentru utilizatorul" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Creează o bază de date cu același nume și acordă toate privilegiile." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Verifică privilegiile pentru baza de date \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Utilizatorul are acces la \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Vizualizarea %s a fost eliminată" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Utilizator" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Permite" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nu s-a găsit nici un utilizator." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Oricare" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "specific bazei de date" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "Metacaracter" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "specific bazei de date" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Editează drepturile de acces" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Revocare" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Redactează serverul" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… menține cel vechi." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… șterge cel vechi din tabelul de utilizatori." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "…revocă toate privilegiile active de la utilizatorul vechi și șterge-l după " "aceea." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Creează un utilizator nou cu aceleași privilegii și…" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Drepturi specifice coloanei" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Adaugă drepturi la baza de date următoare" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "Metacaracterele _ și % trebuiesc însoțite de \\ pentru a le aplica." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Adaugă drepturi la următorul tabel" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Eliminarea utilizatorilor selectați" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " "acestora." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Aruncă baza de date care are același nume ca utilizatorul." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Nici un utilizator ales pentru ștergere!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Reîncărcarea drepturilor" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Ați actualizat privilegiile pentru %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Șterge %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Drepturi de acces" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 #, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Nou" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Editează drepturile de acces" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Descriere utilizator" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " "privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." @@ -14793,21 +14806,21 @@ msgstr "Dimensiune cache index" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tip index:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Utilizator:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Comentariu:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15868,8 +15881,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Raportul curent dintre memoria cache liberă a interogărilor și memoria cache " "totală a interogărilor este %s%%. Ar trebui să fie peste 80%%" @@ -16040,8 +16053,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% din sortări au generat tabele temporare, această valoare ar trebui să " "fie mai mică de 10%%." @@ -16691,8 +16704,8 @@ msgid "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">this blog entry" msgstr "" -"De obicei, este suficientă setarea propietății {innodb_log_file_size} la 25%" -"% din mărimea lui {innodb_buffer_pool_size}. O valoare foarte mare pentru " +"De obicei, este suficientă setarea propietății {innodb_log_file_size} la " +"25%% din mărimea lui {innodb_buffer_pool_size}. O valoare foarte mare pentru " "{innodb_log_file_size} va încetini considerabil timpul de recuperare după o " "distrugere(eroare gravă) a unei baze de date. A se vedea de asemenea \n" "Language-Team: Russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.2-dev\n" #: changelog.php:36 license.php:28 @@ -69,7 +69,7 @@ msgstr "Комментарии к таблице:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "Столбец" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "Ссылки на" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "Первичный" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "Нет" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -264,14 +264,14 @@ msgstr "" "Хранилище конфигурации phpMyAdmin неактивно. %sДля определения причины%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Таблица" @@ -284,7 +284,7 @@ msgid "Rows" msgstr "Строки" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Размер" @@ -378,9 +378,9 @@ msgstr "Состояние" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -575,15 +575,15 @@ msgstr "Добавить геометрию" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -616,8 +616,8 @@ msgstr "Неполные параметры" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." @@ -703,7 +703,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Назад" @@ -727,7 +727,7 @@ msgid "General Settings" msgstr "Основные настройки" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Изменить пароль" @@ -802,7 +802,7 @@ msgstr "Информация о версии:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Документация" @@ -1075,7 +1075,7 @@ msgstr "Добавить индекс" msgid "Edit Index" msgstr "Редактировать индекс" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Добавить %s столбец(ы) к индексу" @@ -1102,7 +1102,7 @@ msgstr "Необходимо добавить хотя бы одно поле." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Предпросмотр SQL" @@ -1131,12 +1131,12 @@ msgstr "Пустое имя хоста!" msgid "The user name is empty!" msgstr "Пустое имя пользователя!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Пустой пароль!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" @@ -1337,7 +1337,7 @@ msgstr "Пожалуйста, добавьте в серию хотя бы од #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1630,7 +1630,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1842,7 +1842,7 @@ msgstr "Отобразить поле запроса" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2094,7 +2094,7 @@ msgstr "Содержание точки данных" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Игнорировать" @@ -2275,7 +2275,7 @@ msgstr "Кликните выпадающую стрелку
для пер #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Показать все" @@ -2375,7 +2375,7 @@ msgstr "Скрыть панель" msgid "Show hidden navigation tree items." msgstr "Отображать скрытые пункты дерева навигации." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Связать с главной панелью" @@ -2825,8 +2825,8 @@ msgstr "Неожиданные символы на строке %s." #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден \"%2" -"$s\"." +"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден " +"\"%2$s\"." #: libraries/Advisor.class.php:475 msgid "per second" @@ -2885,16 +2885,16 @@ msgid "Delete" msgstr "Удалить" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3012,7 +3012,7 @@ msgid "During current session" msgstr "В течение текущей сессии" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3389,8 +3389,8 @@ msgstr "SQL-запрос успешно выполнен." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." @@ -3427,6 +3427,7 @@ msgstr "С отмеченными:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3442,12 +3443,12 @@ msgstr "Изменить" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3642,7 +3643,7 @@ msgid "" msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Сервер" @@ -3657,11 +3658,11 @@ msgstr "Представление" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3677,7 +3678,7 @@ msgstr "Структура" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3703,9 +3704,9 @@ msgstr "Вставить" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Привилегии" @@ -3765,9 +3766,9 @@ msgid "Central columns" msgstr "Центральные столбцы" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Базы данных" @@ -3878,7 +3879,7 @@ msgid "Recent" msgstr "Недавнее" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Избранные таблицы" @@ -3949,7 +3950,7 @@ msgstr "Сортировка" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4305,8 +4306,8 @@ msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -"Восьми-байтовое целое число, диапазон чисел со знаком от -" -"9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без " +"Восьми-байтовое целое число, диапазон чисел со знаком от " +"-9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без " "знака от 0 до 18,446,744,073,709,551,615" #: libraries/Types.class.php:330 libraries/Types.class.php:772 @@ -4320,20 +4321,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до -" -"1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38" +"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до " +"-1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Число с плавающей точкой удвоенной точности, допустимые значения от -" -"1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от " +"Число с плавающей точкой удвоенной точности, допустимые значения от " +"-1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от " "2.2250738585072014E-308 до 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4380,8 +4381,8 @@ msgid "" "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" "Временная метка, диапазон от \"1970-01-01 00:00:01\" UTC до \"2038-01-09 " -"03:14:07\" UTC, содержит количество секунд прошедших со времени (\"1970-01-" -"01 00:00:00\" UTC)" +"03:14:07\" UTC, содержит количество секунд прошедших со времени " +"(\"1970-01-01 00:00:00\" UTC)" #: libraries/Types.class.php:350 libraries/Types.class.php:788 #, php-format @@ -4626,7 +4627,7 @@ msgstr "Максимальный размер: %s%s" msgid "MySQL said: " msgstr "Ответ MySQL: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Анализ SQL запроса" @@ -4638,7 +4639,7 @@ msgstr "Убрать анализ SQL" msgid "Without PHP Code" msgstr "Убрать PHP-код" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP-код" @@ -4751,13 +4752,13 @@ msgstr "Описание" msgid "Use this value" msgstr "Использовать это значение" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5158,7 +5159,7 @@ msgid "Set value: %s" msgstr "Установить значение: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Восстановить изначальное значение" @@ -5262,8 +5263,8 @@ msgid "" "random session invalidation (currently session.gc_maxlifetime is %d)." msgstr "" "%sLogin cookie validity%s более %ssession.gc_maxlifetime%s секунд может " -"вызывать случайные сбросы сессии (текущее значение session.gc_maxlifetime - %" -"d)." +"вызывать случайные сбросы сессии (текущее значение session.gc_maxlifetime - " +"%d)." #: libraries/config/ServerConfigChecks.class.php:413 #, php-format @@ -5293,8 +5294,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"При необходимости используйте дополнительные настройки безопасности - %" -"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " +"При необходимости используйте дополнительные настройки безопасности - " +"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " "защита по IP может быть ненадежной, если ваш IP не является выделенным и " "кроме вас принадлежит тысячам пользователей того же интернет провайдера." @@ -5591,25 +5592,37 @@ msgstr "Вкладка, отображаемая при входе в табли msgid "Default table tab" msgstr "Вкладка по умолчанию для таблицы" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Заключить названия таблиц и полей в косые кавычки" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Заключить названия таблиц и полей в косые кавычки" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Скрывать/отображать действия, производимые над структурой таблицы." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Спрятать действия над структурой таблицы" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" "Выводить доступные для выбора серверы в виде последовательного списка вместо " "выпадающего." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Выводить серверы списком" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5617,11 +5630,11 @@ msgstr "" "Отключить массовые операции обслуживания, такие как оптимизация или " "восстановление выбранных таблиц базы данных." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Отключить операции обслуживания таблиц" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5629,39 +5642,39 @@ msgstr "" "Установите максимальную длительность в секундах, в течение которой скрипт " "может работать ([kbd]0[/kbd] - без ограничения)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Максимальное время выполнения" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Добавить выражение %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Сохранить как файл" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Кодировка файла" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Упаковать" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5671,60 +5684,60 @@ msgstr "Упаковать" msgid "Put columns names in the first row" msgstr "Поместить названия полей в первой строке" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Значения полей обрамлены" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Символ экранирования" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Заменить NULL на" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Удалить из полей символы перевода строки CRLF" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Разделитель столбцов" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Разделитель строк" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Версия Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Шаблон имени базы данных" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Шаблон имени сервера" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Шаблон имени таблицы" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5733,137 +5746,137 @@ msgstr "Шаблон имени таблицы" msgid "Dump table" msgstr "Сохранение таблицы" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Добавить заголовок таблицы" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Заголовок таблицы" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Заголовок таблицы (продолжение)" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Идентификатор метки" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-тип" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Связи" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Метод экспорта" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Сохранить на сервере" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Перезаписать существующий(е) файл(ы)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Запомнить шаблон имени файла" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Заключить названия таблиц и полей в косые кавычки" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Режим совместимости SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Параметры CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Даты создания, обновления и проверки" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Использовать отложенные вставки (DELAYED)" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Отключить проверку внешних ключей" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Экспортировать виды как таблицы" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Добавить %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Использовать шестнадцатеричное отображение для BINARY и BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Использовать игнорирующие вставки (IGNORE)" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Использовать синтаксис при вставке данных" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Максимальная длина создаваемого запроса" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Тип экспорта" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Заключить экспорт в транзакцию" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Экспорт времени в UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "При использовании phpMyAdmin предпочитать безопасное соединение." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Предпочитать SSL соединение" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5871,144 +5884,144 @@ msgstr "" "Порядок сортировки значений в списке внешних ключей; [kbd]content[/kbd] - " "ссылочные данные, [kbd]id[/kbd] - значение ключа." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Сортировка внешних ключей" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" "Если значений меньше указанного, то они будут выведены в виде выпадающего " "списка." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Лимит внешних ключей" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Обзор" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Настройка режима просмотра данных." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Настроить опции по-умолчанию." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Разработчик" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Настройки для разработчиков phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Редакция" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Настроить режим редактирования." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Экспорт" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Настроить параметры экспорта по-умолчанию." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Настройки" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Общие" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Настроить некоторые основные параметры." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Импорт" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Настроить параметры импорта по-умолчанию." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Импорт / экспорт" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Установить каталоги импорта и экспорта, а также параметры сжатия." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Параметры отображения списка баз данных." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Панель навигации" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Настроить вид панели навигации." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Сервера" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Параметры отображения списка серверов." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Параметры отображения списка таблиц." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Основная панель" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Другие настройки ядра" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Настройки, неподходящие к другим разделам." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Заголовки страниц" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6016,19 +6029,19 @@ msgstr "" "Определите текст заголовка браузера. Для ввода особых значений используйте " "подставные строки, которые описаны в [doc@cfg_TitleTable]документации[/doc]." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Окно запроса" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Настройте параметры окна запросов" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Безопасность" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6036,23 +6049,23 @@ msgstr "" "Обратите внимание! phpMyAdmin - это только интерфейс пользователя и его " "настройки не ограничивают возможности MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Основные настройки" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Идентификация" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Настройки идентификации." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Параметры сервера" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6060,15 +6073,15 @@ msgstr "" "Расширенное управление сервером, не изменяйте данные параметры без " "достаточного понимания их назначения." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Введите параметры соединения сервера." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Хранение конфигурации" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6077,11 +6090,11 @@ msgstr "" "Настройка phpMyAdmin для расширенных возможностей, смотрите раздел " "[doc@linked-tables]phpMyAdmin configuration storage[/doc] в документации." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Слежение за изменениями" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6089,108 +6102,108 @@ msgstr "" "Слежение за изменениями произведенными в базе данных. Для работы требуется " "настройка хранения конфигурации phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Модифицировать параметры экспорта" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Модифицировать изначальлные настройки импорта" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Модифицировать панель навигации" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Модифицировать основную панель" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL запросы" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL Запрос" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Настроить ссылки, выводимые в окнах SQL запросов." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Настройки SQL запросов." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Главная" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Настройка вида начальной страницы." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Структура базы данных" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Выберите детали для отображения в структуре базы данных (списке таблиц)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Структура таблицы" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Настройки структуры таблицы (список столбцов)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Вкладки" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Настройте отображение вкладок." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Отобразить схему связей" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Размер бумаги" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Текстовые поля" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Настройте вид текстовых полей." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! текст" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Настройте параметры экспорта используемые по умолчанию" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Предупреждения" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Отключить некоторые предупреждения, выводимые phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6198,15 +6211,15 @@ msgstr "" "Включить [a@http://ru.wikipedia.org/wiki/Gzip]gzip[/a] сжатие для операций " "импорта и экспорта." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Добавочные параметры iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6214,11 +6227,11 @@ msgstr "" "При включении данного параметра phpMyAdmin продолжит выполнение составного " "запроса даже в случае, когда один из запросов не будет выполнен." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Игнорировать ошибки составных запросов" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6228,28 +6241,28 @@ msgstr "" "временного лимита на выполнение скрипта. Может помочь при импорте файлов " "большого размера, однако небезопасно для транзакций." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Частичный импорт: разрешает прерывание" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Отключить проверку внешних ключей" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Не прерывать при возникновении ошибки во время выполнения INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Заместить данные таблицы данными из файла" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6257,69 +6270,69 @@ msgstr "" "Формат по-умолчанию; обратите внимание, что этот список зависит от положения " "(базы данных, таблицы) и только SQL доступен в любом случае." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Формат импортируемого файла" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Использовать ключевое слово LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Имена таблиц в первой строке" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Пропускать пустые строки" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Импортировать денежные единицы (5.00 вместо $5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Импортировать проценты в виде десятичных значений (.12 вместо 12.00%)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Количество запросов, пропускаемых от начала." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Частичный импорт: пропуск запросов" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Не использовать AUTO_INCREMENT для нулевых значений" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Исходное положение раскрывающихся блоков" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Количество строк, которое можно вставить за один раз." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Количество строк при вставке" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Максимальное количество символов, отображаемых в любом нечисловом столбце в " "режиме просмотра." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Ограничить по количеству символов в поле" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6330,11 +6343,11 @@ msgstr "" "значения в FALSE можно легко забыть отключиться от других серверов при " "множественном подключении." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Удалить все cookies при выходе" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6342,11 +6355,11 @@ msgstr "" "Определяет необходимость выводить имя пользователя предыдущего подключения " "при использовании [kbd]cookie[/kbd] идентификации." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Выводить имя пользователя" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6359,50 +6372,50 @@ msgstr "" "закрытия окна браузера. Хранение в течении сессии рекомендуется для " "использования в недружественном окружении." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Хранение cookie" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Определяет длительность (в секундах) действия cookie идентификации." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Срок действия cookie" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" "Двойной размер текстового поля ввода для столбцов, имеющих тип LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Увеличение текстового поля для LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" "Максимальное количество символов, используемых при отображении SQL запроса." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Максимальная длина отображаемого SQL" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Пользователи не смогут установить более высокое значение" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Максимальное количество баз данных, отображаемых в списке." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Максимальное количество баз данных" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6410,21 +6423,21 @@ msgstr "" "Количество пунктов, выводимых на одной странице первого уровня дерева " "навигации." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Максимальное количество пунктов на первом уровне" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "Количество пунктов, выводимых на одной странице дерева навигации." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Максимальное количество пунктов в ветке" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6432,19 +6445,19 @@ msgstr "" "Количество строк при выводе результата запроса. Если строк больше, то будут " "выведены ссылки перелистывания страниц." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Максимальное количество строк" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Максимальное количество таблиц, отображаемых в списке таблиц." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Максимальное количество таблиц" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6452,41 +6465,41 @@ msgstr "" "Максимальное количество байт, которые могут быть выделены скрипту. Пример: " "[kbd]32M[/kbd] ([kbd]0[/kbd] - без ограничений)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Лимит памяти" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Отображать скрытые пункты дерева навигации." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "Связать с главной панелью, выделив текущую базу данных или таблицу." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Отображать логотип в панели навигации." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Выводить логотип" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL, на который будет ссылаться логотип в панели навигации." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL ссылка логотипа" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6494,29 +6507,29 @@ msgstr "" "Открывать ссылку в основном окне ([kbd]main[/kbd]) или в новом ([kbd]new[/" "kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Цель ссылки логотипа" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Отображать в верхней части панели навигации список серверов." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Отображать выбор сервера" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Цель иконки быстрого доступа" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Цель иконки быстрого доступа" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6524,15 +6537,15 @@ msgstr "" "Определяет минимальное количество пунктов (таблиц, представлений, функций и " "событий) для вывода поля фильтра." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Минимальное количество пунктов для вывода поля фильтра" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Минимальное количество баз данных для отображения поля фильтра" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6540,102 +6553,102 @@ msgstr "" "Группировать пункты в дереве навигации (определяется указанием разделителя " "ниже)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Группировать пункты в дереве" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Строка, разделяющая базы данных на различные уровни дерева." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Разделитель дерева баз данных" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Строка, разделяющая таблицы на различные уровни дерева." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Разделитель дерева таблиц" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Максимальная глубина дерева таблиц" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Подсвечивать сервер при наведении курсора." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Включить подсветку" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Следует ли отключить возможность расширения базы данных или нет." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Строка навигации по таблице" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Максимальное количество недавно использованных таблиц; для отключения " "установите в 0." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "Максимальное количество избранных таблиц; для отключения установите в 0." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Недавно использованные таблицы" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Ссылки редактирования, копирования и удаления." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Где вывести ссылки строки таблицы" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "Использовать естественный порядок сортировки имен таблиц и баз данных." -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Порядок сортировки" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Использовать только иконки, только текст, или всё вместе." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Строка навигации по таблице" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" "Использовать буферизацию вывода GZip для увеличения скорости передачи данных " "по HTTP." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Буферизация вывода GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6643,19 +6656,19 @@ msgstr "" "[kbd]SMART[/kbd] - означает обратный порядок сортировки для полей типа TIME, " "DATE, DATETIME и TIMESTAMP; в ином случае порядок будет прямой." -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Порядок сортировки" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Использовать постоянные соединения с базами данных MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Постоянные соединения" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6664,11 +6677,11 @@ msgstr "" "Отключить предупреждение, отображаемое на странице структуры базы данных при " "отсутствии таблиц, необходимых для хранения конфигурации phpMyAdmin." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Отсутствие таблиц хранения конфигурации phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6676,11 +6689,11 @@ msgstr "" "Отключить отображение предупреждения при различии версий библиотеки MySQL и " "сервера." -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Предупреждение различия Сервера/библиотеки" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6688,27 +6701,27 @@ msgstr "" "Отключить предупреждение, отображаемое на странице структуры при наличии " "столбцов таблицы с именами, являющимися зарезервированными словами MySQL." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Предупреждение о зарезервированном слове MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Как отображать вкладки меню" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Как отображать ссылки на различные действия" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Запретить возможность редактирования столбцов типа BLOB и BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Защитить бинарные данные" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6718,126 +6731,126 @@ msgstr "" "настройка расширений phpMyAdmin). При отключении, для истории запросов " "используется JavaScript (история теряется при закрытии окна)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Постоянная история запросов" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Количество запросов, хранимых в истории." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Длина истории запросов" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "Выберите функции, которые будут использоваться для перекодирования." -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Механизм перекодирования" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "При просмотре таблиц запоминается сортировка каждой таблицы." -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Запоминать сортировку таблиц" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "Порядок сортировки по-умолчанию для таблиц с первичным ключом." -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Порядок сортировки первичного ключа по-умолчанию" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" "Повторять заголовки через каждые X ячеек, [kbd]0[/kbd] отключает данную " "функцию." -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Повтор заголовков" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Редактирование сетки: действие триггера" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Отображение связанного поля" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Параметры отображения списка серверов." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Редактирование сетки: сохранить все отредактированные ячейки сразу" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Каталог на сервере, в который можно сохранять файлы при экспорте." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Каталог сохранения" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Оставьте поле пустым, если не используете данную функцию." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Последовательность идентификации хоста" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Оставьте поле пустым для использования значения по-умолчанию." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Правила идентификации хоста" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Разрешать подключения без пароля" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Разрешить вход под root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Значение сессии" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "Отображаемая строка при идентификации методом HTTP." -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Область HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6846,19 +6859,19 @@ msgstr "" "Путь к конфигурационному файлу для [a@http://swekey.com]SweKey hardware " "authentication[/a]." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Конфигурационный файл SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Используемый метод идентификации." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Тип идентификации" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6866,11 +6879,11 @@ msgstr "" "Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/bookmark]закладок" "[/a] оставьте поле пустым, рекомендуется: [kbd]pma__bookmark[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Таблица закладок" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6878,31 +6891,31 @@ msgstr "" "Для отключения поддержки комментариев/mime-типов полей оставьте поле пустым, " "рекомендуется: [kbd]pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Таблица информации полей" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Сжимать данные при соединении с сервером MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Соединение со сжатием" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "Способ соединения с сервером. Если неуверены, оставьте [kbd]tcp[/kbd]." -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Тип соединения" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Пароль выделенного пользователя" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6910,11 +6923,11 @@ msgstr "" "Специальный пользователь MySQL с ограниченными привилегиями. Подробнее: " "[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Выделенный пользователь" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6922,11 +6935,11 @@ msgstr "" "Альтернативный хост для хранения настроек конфигурации; для использования " "уже определённого хоста оставьте поле пустым." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Контрольный хост" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6936,15 +6949,15 @@ msgstr "" "уже определённого поста оставьте поле пустым, или уже заранее определённым, " "если контрольный хост идентичен хосту." -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Контрольный порт" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Скрыть базы данных, подпадающие под регулярное выражение (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6952,15 +6965,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Отключить использование INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Скрыть базы данных" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6968,23 +6981,23 @@ msgstr "" "Для отключения поддержки истории SQL запросов оставьте поле пустым, " "рекомендуется: [kbd]pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Таблица истории SQL запросов" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Хост, на котором работает сервер MySQL." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Хост сервера" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL выхода" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6992,15 +7005,15 @@ msgstr "" "Ограничивает количество хранимых в базе данных свойств таблицы, устаревшие " "записи автоматически удаляются." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Максимальное количество хранимых свойств таблицы" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "таблица сохраненных запросов QBE" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -7008,13 +7021,13 @@ msgstr "" "Для отключения поддержки QBE оставьте поле пустым, рекомендуется: [kbd]" "pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns 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__table_coords[/" @@ -7026,15 +7039,15 @@ msgstr "" "Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Пытаться установить соединение без пароля." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Соединять без пароля" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7044,30 +7057,30 @@ msgstr "" "хотите использовать, как обычные литературные символы, т.е. используйте " "[kbd]'my\\_db'[/kbd], а не [kbd]'my_db'[/kbd]." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Показывать только базы данных из списка" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Если не используется config идентификация, оставьте поле пустым." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Прописанный пароль" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF схема: страницы таблицы" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7078,20 +7091,20 @@ msgstr "" "pmadb[/a]. Для отключения поддержки оставьте поле пустым. Рекомендуется: " "[kbd]phpmyadmin[/kbd]." -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Имя базы данных" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "Порт, на котором работает сервер MySQL. По-умолчанию оставьте пустым." -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Порт сервера" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7099,11 +7112,11 @@ msgstr "" "Для отключения возможности просмотра недавно использованных таблиц оставьте " "поле пустым, рекомендуется: [kbd]pma__recent[/kbd]." -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" 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, " @@ -7115,13 +7128,13 @@ msgstr "" "Для отключения возможности просмотра недавно использованных таблиц оставьте " "поле пустым, рекомендуется: [kbd]pma__recent[/kbd]." -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Избранные таблицы" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7129,11 +7142,11 @@ msgstr "" "Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/relation]relation-" "links[/a] оставьте поле пустым, рекомендуется: [kbd]pma__relation[/kbd]." -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Таблица связей" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7141,31 +7154,31 @@ msgstr "" "Для примера смотрите раздел [a@http://wiki.phpmyadmin.net/pma/" "auth_types#signon]authentication types[/a]." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Имя сессии для Signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL для Signon" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "Сокет, на котором работает сервер MySQL. По-умолчанию оставьте пустым." -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Сокет сервера" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Использовать SSL для соединения с сервером MySQL." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Использовать SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7173,11 +7186,11 @@ msgstr "" "Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Дизайнер и PDF схема: координаты таблиц" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7185,11 +7198,11 @@ msgstr "" "Таблица для описания отображаемых полей, для отключения поддержки данной " "функции оставьте поле пустым, рекомендуется: [kbd]pma__table_info[/kbd]." -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Таблица с описаниями полей" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7197,11 +7210,11 @@ msgstr "" "Для отключения возможности хранения настроек интерфейса таблиц через сессии " "оставьте поле пустым, рекомендуется: [kbd]pma__table_uiprefs[/kbd]." -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Таблица хранения настроек интерфейса" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7209,11 +7222,11 @@ msgstr "" "Будет ли при создании базы данных, в журнал первой строкой добавлено " "выражение DROP DATABASE IF EXISTS." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Добавить DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7221,11 +7234,11 @@ msgstr "" "Будет ли при создании таблицы, в журнал первой строкой добавлено выражение " "DROP TABLE IF EXISTS." -#: libraries/config/messages.inc.php:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Добавить DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7233,21 +7246,21 @@ msgstr "" "Будет ли при создании представления, в журнал первой строкой добавлено " "выражение DROP VIEW IF EXISTS." -#: libraries/config/messages.inc.php:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Добавить DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Определить список выражений используемых для автоматического создания новых " "версий." -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Слежение за выражениями" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7255,11 +7268,11 @@ msgstr "" "Для отключения поддержки слежения за SQL запросами оставьте поле пустым, " "рекомендуется: [kbd]pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Таблица слежения за SQL запросами" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7267,11 +7280,11 @@ msgstr "" "Должен ли механизм слежения создавать версии таблиц и представлений " "автоматически." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Автоматическое создание версий" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7279,11 +7292,11 @@ msgstr "" "Для отключения возможности хранения пользовательских настроек в базе данных " "оставьте поле пустым, рекомендуется: [kbd]pma__userconfig[/kbd]." -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Таблица хранения настроек пользователя" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7293,11 +7306,11 @@ msgstr "" "возможности настраиваемых меню; если хотя бы одна из них пустая, то эта " "возможность будет отключена, предложил: [kbd]pma__users[/kbd]." -#: libraries/config/messages.inc.php:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Таблица пользователей" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7307,11 +7320,11 @@ msgstr "" "настраиваемых меню; если хотя бы одна из них пустая, то эта возможность " "будет отключена, предложил: [kbd]pma__usergroups[/kbd]." -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Таблица групп пользователей" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7319,15 +7332,15 @@ msgstr "" "Для отключения функции скрытия/отображения элементов навигации оставьте поле " "пустым, рекомендуется: [kbd]pma__navigationhiding[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Таблица скрытых пунктов навигации" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Прописанный пользователь" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7335,19 +7348,19 @@ msgstr "" "Пользовательское описание сервера. Оставьте поле пустым, чтобы вывести " "название хоста." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Пользовательское имя сервера" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "Позволяет вывести пользователю кнопку \"показать все (записи)\"." -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Разрешать вывод всех строк" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7357,44 +7370,44 @@ msgstr "" "идентификации методом [kbd]config[/kbd] из-за жестко прописанного пароля. " "Смена пароля в конфигурационном файле напрямую никак не ограничена." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Вывести форму изменения пароля" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Вывести форму создания базы данных" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "Выводить/скрывать столбец, отображающий время создания всех таблиц." -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Показать время создания" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" "Выводить/скрывать столбец, отображающий последнее время обновления всех " "таблиц." -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Показать последнее время обновления" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" "Выводить/скрывать столбец, отображающий последнее время проверки всех таблиц." -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Показать последнее время проверки" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7402,90 +7415,90 @@ msgstr "" "Определяет, должны ли введенные поля изначально отображаться в режиме " "редактирования/вставки." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Отображение типа полей" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Выводить поля функций в режиме редактирования/вставки." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Выводить поля функций" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Показать/скрыть подсказки." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Показать подсказку" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 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:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Вывести ссылку на phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Вывести подробную информацию по MySQL серверу" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "Определяет выводить или нет SQL запросы, генерируемые phpMyAdmin." -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Показывать SQL запросы" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" "Определяет будет ли форма запроса оставаться на экране после его отправки." -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Оставить поле запроса" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" "Разрешить вывод статистики по базе данных и таблице (например, объем " "занятого пространства)." -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Показывать статистику" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" "Отмечать использованные таблицы и делать возможным отображение баз данных с " "заблокированными таблицами." -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Пропускать заблокированные таблицы" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Выводить предупреждение на главной странице при определении Suhosin." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Предупреждение о Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7498,13 +7511,13 @@ msgstr "" "Отключить предупреждение, отображаемое на странице структуры при наличии " "столбцов таблицы с именами, являющимися зарезервированными словами MySQL." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Срок действия cookie" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7513,11 +7526,11 @@ msgstr "" "значение будет приоритетным для текстовых полей SQL запроса (*2) и для окна " "запроса (*1.25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Столбцов в текстовом поле" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7526,31 +7539,31 @@ msgstr "" "значение будет приоритетным для текстовых полей SQL запроса (*2) и для окна " "запроса (*1.25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Строк в текстовом поле" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "Заголовок окна браузера при выборе базы данных." -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Заголовок окна браузера по-умолчанию." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Заголовок по умолчанию" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "Заголовок окна браузера при выборе сервера." -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "Заголовок окна браузера при выборе таблицы." -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7562,27 +7575,27 @@ msgstr "" "For) заголовку, пришедшему с прокси 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]." -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Список доверенных прокси для IP allow/deny" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "Каталог на сервере, в который вы можете загружать файлы для импорта." -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Каталог загрузки" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Разрешить поиск по всей базе данных." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Использовать поиск по базе данных" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7590,28 +7603,28 @@ msgstr "" "При отключении пользователи не смогут установить никакие из указанных ниже " "параметров вне зависимости от галочки справа от них." -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Включение вкладки разработчика в настройках" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Проверить обновление" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" "Включает возможность проверки последней версии phpMyAdmin на главной " "странице." -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7623,11 +7636,11 @@ msgstr "" "необходимо, если сервер, на котором установлен phpMyAdmin, не имеет прямого " "доступа к Интернету. Формат: «hostname:portnumber»." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Ссылка на прокси" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7638,19 +7651,19 @@ msgstr "" "будет выполнена обычная проверка подлинности. В настоящее время другие типы " "проверки подлинности не поддерживаются." -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Имя пользователя прокси" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Пароль для идентификации через прокси." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Пароль прокси" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7658,47 +7671,47 @@ msgstr "" "Включить [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] сжатие " "для операций импорта и экспорта." -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "Введите ваш публичный ключ для сервиса reCaptcha вашего домена." -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Публичный ключ для reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "Введите ваш закрытый ключ для сервиса reCaptcha вашего домена." -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Закрытый ключ для reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "Выберите действие по-умолчанию при отправке отчётов об ошибках." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Отправить отчёты об ошибках" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Выполнено запросов" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7706,7 +7719,7 @@ msgstr "" "Включить режим нулевой конфигурации, который позволяет настроить хранилище " "конфигурации phpMyAdmin автоматически." -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Включить режим нулевой конфигурации" @@ -7726,44 +7739,44 @@ msgstr "Авторизация с помощью HTTP" msgid "Signon authentication" msgstr "Авторизация с помощью Signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV, используя LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Электронная таблица OpenDocument" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Быстро" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Обычно" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Параметры экспорта базы данных" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV для MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Текст OpenDocument" @@ -7977,20 +7990,20 @@ msgstr "Подсчет строк результата вне буфера не #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Пароль:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Подтверждение:" @@ -8129,8 +8142,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -8689,8 +8702,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." @@ -9158,7 +9171,7 @@ msgstr "Выход" msgid "phpMyAdmin documentation" msgstr "Документация phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Обновить панель навигации" @@ -9461,8 +9474,8 @@ msgid "" "No partial dependencies possible as no non-primary column exists since " "primary key ( %1$s ) is composed of all the columns in the table." msgstr "" -"Невозможны частичные зависимости, т. к. нет столбца вне первичного ключа ( %1" -"$s )." +"Невозможны частичные зависимости, т. к. нет столбца вне первичного ключа " +"( %1$s )." #: libraries/normalization.lib.php:318 libraries/normalization.lib.php:360 msgid "Table is already in second normal form." @@ -9517,8 +9530,8 @@ msgstr "" #: libraries/normalization.lib.php:381 #, fuzzy, php-format #| msgid "" -#| "As per above partial dependencies, in order to put the original table '%1" -#| "$s' into Second normal form we need to create the following tables:" +#| "As per above partial dependencies, in order to put the original table " +#| "'%1$s' into Second normal form we need to create the following tables:" msgid "" "In order to put the original table '%1$s' into Second normal form we need to " "create the following tables:" @@ -9854,8 +9867,8 @@ msgstr "Добро пожаловать в %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Возможная причина - отсутствие файла конфигурации. Для его создания вы " "можете воспользоваться %1$sсценарием установки%2$s." @@ -10086,7 +10099,7 @@ msgstr "Поместить названия полей в первой стро #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Хост:" @@ -11124,22 +11137,22 @@ msgstr "" "server-id. При необходимости, добавьте следующую строку в раздел [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Имя пользователя:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Имя пользователя" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Пароль" @@ -11167,10 +11180,10 @@ msgstr "ID сервера" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Хост" @@ -11184,38 +11197,38 @@ msgstr "" "видимы в данном списке." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Любой хост" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Локальный" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Этот хост" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Любой пользователь" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Использовать текстовое поле:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Использовать таблицу хостов" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11224,7 +11237,7 @@ msgstr "" "берутся из прописанных при конфигурации." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Подтверждение" @@ -11959,7 +11972,7 @@ msgstr "Нет" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Группа пользователей" @@ -12033,14 +12046,14 @@ msgstr "Максимальное количество одновременных #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Привилегии уровня таблицы" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Примечание: типы привилегий MySQL отображаются по-английски." @@ -12049,7 +12062,7 @@ msgid "Administration" msgstr "Администрирование" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Глобальные привилегии" @@ -12058,7 +12071,7 @@ msgid "Global" msgstr "Глобальный" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" @@ -12077,18 +12090,18 @@ msgstr "" "Разрешает добавление пользователей и привилегий без перезагрузки таблиц " "привилегий." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Информация учётной записи" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Использовать текстовое поле" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12096,219 +12109,219 @@ msgstr "" "Учётная запись с данным именем пользователя, но, возможно, иным именем хоста " "уже существует." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Не менять пароль" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s был успешно изменён." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Вы отменили привилегии для %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Добавить пользователя" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "База данных для пользователя" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "Создать базу данных с таким же именем и предоставить на неё все привилегии." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Предоставить все привилегии на то, что подпадает под шаблон (имя пользователя" "\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Предоставить все привилегии на базу данных \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Пользователи с правами доступа к \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Пользователь был добавлен." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Пользователь" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Предоставить" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Недостаточно прав для просмотра пользователей." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Пользователь не найден." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Любой" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "глобальный" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "уровень базы данных" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "шаблон" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "уровень таблицы" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Редактировать привилегии" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Отменить" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Редактировать группу пользователей" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… сохранить предыдущего." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… удалить предыдущего из таблиц пользователей." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… отменить все активные привилегии предыдущего и затем удалить его." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… удалить предыдущего из таблиц пользователей и перезагрузить привилегии." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Изменить регистрационные данные / Копировать пользователя" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Создать нового пользователя с такими же привилегиями и …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Привилегии уровня столбца" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Добавить привилегии для следующих(ей) баз(ы) данных:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "При использовании символов нижнего подчеркивания _ и процента % необходимо " "экранировать их символом обратной косой черты \\." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Добавить привилегии на следующую таблицу:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Удалить выбранных пользователей" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отменить все активные привилегии пользователей и затем удалить их." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Не выбраны пользователи, подлежащие удалению!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Перезагрузка привилегий" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Выбранные пользователи были успешно удалены." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы обновили привилегии для %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Удаление %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Пользователь %s уже существует!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Привилегии для %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Новый" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Редактировать привилегии:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12316,28 +12329,28 @@ msgstr "" "Примечание: Вы пытаетесь изменить привилегии пользователя, под именем " "которого вы в настоящее время вошли в систему." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Обзор пользователей" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Примечание: phpMyAdmin получает информацию о пользовательских привилегиях " "непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может " "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В этом случае необходимо %sперезагрузить привилегии%s." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Выбранный пользователь не найден в таблице привилегий." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Вы добавили нового пользователя." @@ -14137,21 +14150,21 @@ msgstr "Размер кеша индекса" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Тип индекса :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Пользователь:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Комментарий:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Перетяните для изменения порядка сортировки" @@ -15211,8 +15224,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Текущее соотношение свободного кеша запросов по отношению к полному кешу " "запросов составляет %s%%. Значение должно быть выше 80%%" @@ -15369,8 +15382,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% сортировок вызывает создание временных таблиц, данное значение должно " "быть ниже 10%%." diff --git a/po/si.po b/po/si.po index fb79b53ae3..82037fe4da 100644 --- a/po/si.po +++ b/po/si.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-11 12:16+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: Sinhala \n" +"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: si\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.0\n" @@ -66,7 +66,7 @@ msgstr "වගු විස්තර:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -90,7 +90,7 @@ msgstr "තීර" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -146,8 +146,8 @@ msgid "Links to" msgstr "සම්බන්ද වන්නේ" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -176,13 +176,13 @@ msgstr "ප්‍රාථමික" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -205,13 +205,13 @@ msgstr "නැත" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -260,14 +260,14 @@ msgid "" msgstr "phpMyAdmin හි configuration storage අක්‍රිය කර ඇත. %sසොයා බලන්න%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "වගුව" @@ -280,7 +280,7 @@ msgid "Rows" msgstr "පේළි" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "ප්‍රමාණය" @@ -373,9 +373,9 @@ msgstr "තත්වය" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -569,15 +569,15 @@ msgstr "ජ්‍යාමිතියක් එක් කරන්න" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -613,8 +613,8 @@ msgstr "සම්පූර්ණ ඇතුළු කිරීම්" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "ඔබ උඩුගත කිරීමට උත්සාහ කල ගොනුව විශාල වැඩි විය හැක. මෙම සීමාවන් ඉක්මවීමේ ක්‍රම සඳහා කරුණාකර " "%sලියකියවිලි%s බලන්න." @@ -695,7 +695,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "ආපසු" @@ -718,7 +718,7 @@ msgid "General Settings" msgstr "සාමාන්‍ය සිටුවම්" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "මුරපදය වෙනස් කරන්න" @@ -794,7 +794,7 @@ msgstr "අනුවාදය පිළිබඳ තොරතුරු:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "ලියකියවිලි" @@ -1090,7 +1090,7 @@ msgstr "සුචිය එක් කරන්න" msgid "Edit Index" msgstr "සුචිය සංස්කරණය කරන්න" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "සුචියට ක්ෂේත්‍ර %s ක් එක් කරන්න" @@ -1125,7 +1125,7 @@ msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්‍ර #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1158,12 +1158,12 @@ msgstr "දාරක නම හිස්ව පවතී!" msgid "The user name is empty!" msgstr "භාවිත නාමය හිස්ව පවතී!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "මුරපදය හිස්ව පවතී!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "මුරපද නොගැලපේ!" @@ -1362,7 +1362,7 @@ msgstr "කරුණාකර ශ්‍රේණියට අවම වශයෙ #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1645,7 +1645,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1860,7 +1860,7 @@ msgstr "විමසුම් කවුළුව පෙන්වන්න" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2136,7 +2136,7 @@ msgstr "ලක්ෂයට අදාල දත්ත" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "නොසලකන්න" @@ -2327,7 +2327,7 @@ msgstr "තීර පෙන්වීමට/සැඟවීමට
ඊතල #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" @@ -2431,7 +2431,7 @@ msgstr "පැනලය සඟවන්න" msgid "Show hidden navigation tree items." msgstr "යාත්‍රණ පැනලයේ ලාංඡනය පෙන්වන්න" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main panel" @@ -2944,16 +2944,16 @@ msgid "Delete" msgstr "ඉවත් කරන්න" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3092,7 +3092,7 @@ msgid "During current session" msgstr "වත්මන් දෝෂය මගහරින්න" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3492,8 +3492,8 @@ msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍ර #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න." @@ -3529,6 +3529,7 @@ msgstr "තෝරාගත්:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3544,12 +3545,12 @@ msgstr "වෙනස් කරන්න" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3743,7 +3744,7 @@ msgid "" msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "සේවාදායකය" @@ -3758,11 +3759,11 @@ msgstr "දසුන" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3778,7 +3779,7 @@ msgstr "සැකිල්ල" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3804,9 +3805,9 @@ msgstr "ඇතුල් කරන්න" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "වරප්‍රසාද" @@ -3868,9 +3869,9 @@ msgid "Central columns" msgstr "පෙළ පෙදෙසේ පළල" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "දත්තගබඩා" @@ -3986,7 +3987,7 @@ msgid "Recent" msgstr "ප්‍රතිසකසන්න" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4067,7 +4068,7 @@ msgstr "තේරීම" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4441,21 +4442,21 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "කුඩා දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -3.402823466E+38 සිට -1.175494351E-38, " "0, හා 1.175494351E-38 සිට 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"ද්වී-නියත දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට -" -"2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට 1.7976931348623157E" -"+308" +"ද්වී-නියත දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට " +"-2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට " +"1.7976931348623157E+308" #: libraries/Types.class.php:336 msgid "" @@ -4734,7 +4735,7 @@ msgstr "උපරිම: %s%s" msgid "MySQL said: " msgstr "MySQL පවසන ලදි: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL ය පහදන්න" @@ -4746,7 +4747,7 @@ msgstr "SQL ය පහදා දීමෙන් ඉවත් වන්න" msgid "Without PHP Code" msgstr "PHP කේත නොමැතිව" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" @@ -4859,13 +4860,13 @@ msgstr "විස්තරය" msgid "Use this value" msgstr "මෙම අගය භාවිතා කරන්න" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5268,7 +5269,7 @@ msgid "Set value: %s" msgstr "%s අගය පිහිටුවන්න" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "පෙරනිමි අගය ප්‍රතිස්ථාපනය කරන්න" @@ -5648,23 +5649,35 @@ msgstr "වගුවකට ඇතුල් වීමේදී පෙන්වි msgid "Default table tab" msgstr "පෙරනිමි වගු ටැබය" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "වගු සහ තීර නම් පසු-උදෘත මගින් අවුරන්න" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "වගු සහ තීර නම් පසු-උදෘත මගින් අවුරන්න" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "වගු සැකිල්ලට අදාල ක්‍රියාවන් සැඟවිය යුතුද යන වග." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "වගු සැකිල්ලට අදාල ක්‍රියාවන් සඟවන්න" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "සේවාදායකයන් පතනයක් ලෙස නොව ලැයිස්තුවක් ලෙස පෙන්වන්න" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "සේවාදායකයන් ලැයිස්තුවක් ලෙස පෙන්වන්න" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5672,11 +5685,11 @@ msgstr "" "දත්තගබඩාවක් තුල තෝරාගත් වගු කිහිපයක් සඳහා අලුත්වැඩියා කිරීම, ප්‍රශස්තකරණය වැනි නඩත්තු කටයුතු එක " "වර සිදු කිරීම අක්‍රීය කරන්න." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "වගු කිහිපයක් එක වර නඩත්තු කිරීම අක්‍රීය කරන්න" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5684,39 +5697,39 @@ msgstr "" "විධානාවලියක් ක්‍රියාත්මක වීමට ලබා දෙන කාලය සඳහා අගයක් සිටුවයි. (අසීමිත කාලයක් සඳහා [kbd]0[/" "kbd] භාවිතා කරන්න)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "උපරිම ක්‍රියාත්මක කාලය" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s ප්‍රකාශය එක්කරන්න" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "ගොනුවක් ලෙස තෝරන්න" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "ගොනුවේ අක්ෂර කට්ටලය" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "ආකෘතිය" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "හැකිළීම" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5726,60 +5739,60 @@ msgstr "හැකිළීම" msgid "Put columns names in the first row" msgstr "තීර නම් පළමු පේළියේ යොදන්න" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "තීර ඇවුරුම් සළකුණ" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "තීර මගහැරීමේ සළකුණ" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "NULL වෙනුවට භාවිතා කරන්න" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "තීර තුල ඇති CRLF අනුලකුණු ඉවත් කරන්න" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "තීර වෙන් කිරීමේ සළකුණ" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "පේළි අවසන් කිරීමේ සළකුණ" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "එක්සෙල් සංස්කරණය" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "දත්තගබඩා නාම ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "සේවාදායක නාම ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "ගොනු නාම ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5788,141 +5801,141 @@ msgstr "ගොනු නාම ටෙම්ප්ලේටය" msgid "Dump table" msgstr "වගු නික්ෂේපනය" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "වගු ශිර්ෂ පාඨ ඇතුලත් කරන්න" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "වගු සිරස් තලය" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "සබැඳි වගු සිරස්තල" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "ලේබල යතුර" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME වර්ගය" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "සබඳතා" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "අපනයන ක්‍රමය" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "සේවාදායකයේ සුරකින්න" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "වත්මන් ගොනු(ව) උඩින් ලියන්න" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "ගොනු නාම ටෙම්ප්ලේටය මතක තබා ගන්න" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "වගු සහ තීර නම් පසු-උදෘත මගින් අවුරන්න" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL ගැලපුම් ප්‍රකාරය" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE විකල්ප:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "සෑදීම/යාවත් කාලීන/පරීක්ෂා කිරීමේ දින" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "ප්‍රමාදිත ඇතුල් කිරීම භාවිතා කරන්න" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "අන්‍ය මූල පරීක්ෂා අක්‍රිය කරන්න" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export views as tables" msgstr "\"%s\" වගුවෙන් පේළි අපනයනය කිරීම" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "BLOB සඳහා hexadecimal භාවිතා කරන්න" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "දෝෂ නොසලකා ඇතුල් කිරීම් භාවිතා කරන්න" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "දත්ත ඇතුල් කිරීමේදී භාවිතා කල යුතු වාග් රීතිය" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "නිර්මිත විමසුමේ උපරිම දිග" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "අපනයන වර්ගය" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "අපනයන transaction යක් තුල අඩංගු කරන්න" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "වේලාව UTC ලෙස අපනයනය කරන්න" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "phpMyAdmin භාවිතා කිරීමේදී ආරක්‍ෂිත සම්බන්දතාවක් යොදා ගැනීමට බල කරන්න." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "SSL සම්බන්ධතාවක් යොදා ගැනීමට බල කරන්න" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5930,142 +5943,142 @@ msgstr "" "අන්‍ය-මූල පතන කොටුව තුල භාවිතා කල යුතු අනුපිළිවෙල; [kbd]content[/kbd] යොමුවේ දත්ත සඳහා, " "[kbd]id[/kbd] යතුරේ අගය සඳහා." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "අන්‍ය-මූල පතන කොටුවේ අනුපිළිවෙල" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "අයිතම ගණන අඩු නම් පතනයක් භාවිතා කෙරෙයි." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "අන්‍ය මූල සීමාව" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "පිරික්සුම් ප්‍රකාරය" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "පිරික්සුම් ප්‍රකාරය රිසි සේ සකසන්න." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "පෙරනිමි විකල්ප රිසි සේ සකසන්න." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "මෘදුකාංග සංවර්ධනය කරන්නා" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "phpMyAdmin හි මෘදුකාංග සංවර්ධනය කරන්නන් සඳහා සිටුවම්." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "සංස්කරණ ප්‍රකාරය" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "සංස්කරණ ප්‍රකාරය රිසි සේ සකසන්න." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "අපනයන පෙරනිමි" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "පෙරනිමි අපනයන විකල්ප රිසි සේ සකසන්න." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "විශේෂාංග" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "සාමාන්‍ය" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "නිතර භාවිතා වන විකල්ප සඳහා අගයන් සිටුවන්න." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "ආනයන පෙරනිමි" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "පොදු ආනයන විකල්ප සඳහා පෙරනිමි අගයන් සකසන්න." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "ආනයන / අපනයන" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "ආනයන, අපනයන ඩිරෙක්ටරි සහ හැකිලුම් සඳහා විකල්ප තෝරාගන්න." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "දත්තගබඩා පෙන්වුම් විකල්ප." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "යාත්‍රණ පැනලය" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "යාත්‍රණ පැනලයේ පෙනුම රිසි සේ සකසන්න." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "සේවාදායකයන්" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "සේවාදායක පෙන්වුම් විකල්ප." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "ගොනු පෙන්වුම් විකල්ප." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "ප්‍රධාන පැනලය" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "මයික්‍රොසොෆ්ට් ඔෆිස්" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "අනෙකුත් ප්‍රධාන සිටුවම්" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "වෙනත් කිසිඳු තැනකට නොගැලපුණු සිටුවම්." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "පිටු නාම" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6073,19 +6086,19 @@ msgstr "" "බව්සරයේ මාතෘකා පටියේ දැක්වෙන පෙළ සඳහන් කරයි. මේ සඳහා යොදාගත හැකි විශේෂ අගයන් ගෙනදෙන " "වචන දැනගැනීමට [doc@cfg_TitleTable]ලියකියවිලි[/doc] බලන්න." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "විමසුම් කවුළුව" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "විමසුම් කවුළුව සඳහා වූ විකල්ප රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "ආරක්ෂාව" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6093,38 +6106,38 @@ msgstr "" "phpMyAdmin අතුරුමුහුණතක් පමණක් බව හා MySQL හි විශේෂාංග මෙයට සීමා නොවන බව කරුණාවෙන් " "සලකන්න." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "මූලික සිටුවම්" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "සත්‍යාපනය" # සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "සත්‍යාපන සිටුවම්." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "සේවාදායකයේ වින්‍යාස" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "සේවාදායකයට සම්බන්ධ වීමේ පරාමිතියන් ඇතුල් කරන්න." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "වින්‍යාස ගබඩාව" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6133,118 +6146,118 @@ msgstr "" "අමතර විශේෂාංග භාවිතා කිරීම සඳහා phpMyAdmin වින්‍යාස ගබඩාව සකසන්න. ලියකියවිලි වල " "[doc@linked-tables]phpMyAdmin වින්‍යාස ගබඩාව[/doc] බලන්න." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "වෙනස්කම් පිළිබඳ අවධානය" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" "දත්තගබඩා වල සිදු කරන වෙනස්කම් පිලිබඳ දත්ත තබා ගනියි. phpMyAdmin වින්‍යාස ගබඩාව අවශ්‍ය වේ." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "අපනයන සිටුවම් රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "ආනයන පෙරනිමි රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "යාත්‍රණ පැනලය රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "ප්‍රධාන පැනලය රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL විමසුම" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL විමසුම් කවුළුව" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "SQL විමසුම් කවුළුවේ ඇති සබැඳුම් රිසි සේ සකසන්න." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL විමසුම් සිටුවම්." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "ඇරඹුම්" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "ඇරඹුම් පිටුව රිසි සේ සකසන්න." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "දත්තගබඩා සැකිල්ල" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "දත්තගබඩා සැකිල්ලේ (වගු ලයිස්තුවේ) පෙන්විය යුතු විස්තර තෝරන්න." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "වගු සැකිල්ල" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "වගු සැකිල්ලට අදාල සිටුවම් (තීර ලැයිස්තුව)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "ටැබ්" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "ටැබ් ක්‍රියා කල යුතු ආකාරය තෝරන්න." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "ක්‍රමානුරූපය පෙන්වන්න" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "පිටුවේ ප්‍රමාණය" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "පෙළ ක්ෂේත්‍රයන්" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "පෙළ ආදාන ක්ෂේත්‍රයන් රිසි සේ සකසන්න." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! පෙළ" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "පෙරනිමි විකල්ප රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "අනතුරු ඇඟවීම්" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "phpMyAdmin හි සමහර අනතුරු ඇඟවීම් අක්‍රීය කරන්න." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6252,15 +6265,15 @@ msgstr "" "ආනයන හා අපනයන සඳහා [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] හැකිළුම සක්‍රීය " "කරන්න." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv සඳහා අමතර පරාමිතියන්" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6268,11 +6281,11 @@ msgstr "" "සක්‍රීය කළහොත් විමසුම් වැඩි ගණනක් එකවර ක්‍රියාත්මක කිරීමේදී එක විමසුමක් අසමත් වුවද ඉතිරි විමසුම් " "ක්‍රියාත්මක කරවයි." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "විමසුම් වැඩි ගණනකදී දෝෂ නොසලකන්න" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6281,28 +6294,28 @@ msgstr "" "කාල සීමාව අවසානයට ආසන්න බව දැණුනු විට අනයනනයට බාධා කිරීම සිදුකරන්න. විශාල ගොනු ආනයනයට " "මෙය හොඳ ක්‍රමයක් වන නමුත් මෙමඟින් transactions බිඳීම සිදුවිය හැක." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "අර්ධ ආනයනය: අතුරු බිඳිය හැක" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "අන්‍ය මූල පරීක්ෂා අක්‍රිය කරන්න" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "ඇතුළු කිරීමේ දෝෂ මත අත් නොහරින්න" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "වගුවේ දත්ත ගොනුවෙන් ප්‍රතිස්ථාපනය කරන්න" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6310,78 +6323,78 @@ msgstr "" "පෙරනිමි ආකෘතිය; මෙම ලැයිස්තුව ඔබ සිටිනා ස්ථානය (දත්තගබඩා, වගු) මත තීරණය වේ. SQL පමණක් සෑම " "විටම ඇත." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "LOCAL මූල පදය භාවිතා කරන්න" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "පළමු පේළියේ තීරු නම්" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "හිස් පේළි ආනයනය නොකරන්න" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "ව්‍යවහාර මුදල් අගයන් ආනයනය කරන්න (උදා. $5.00, 5.00 ලෙස)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "ප්‍රතිශත පූර්ණ සංඛ්‍යා ලෙස ආනයනය කරන්න (උදා. 12.00%, 12 ලෙස)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "ආරම්භයේ සිට ඇත හැරිය යුතු විමසුම් ගණන." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "අර්ධ ආනයනය: විමසුම් නොසලකා හරිමින්" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "ශුන්‍ය අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "හැකිලුමේ ආරම්භක ආකාරය" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "වරකට ඇතුල් කල හැකි පේළි ගණන." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "ඇතුල් කල පේළි ගණන" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "වගු පිරික්සීමේදී සංඛ්‍යාමය නොවන තීරුවක පෙන්විය යුතු උපරිම අනුලකුණු ගණන." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "තීරුවක අනුලකුණු සීමා කරන්න" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "පිටවීමේදී කුකී සියල්ල ඉවත් කරන්න" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6391,11 +6404,11 @@ msgid "" "kbd] authentication mode." msgstr "කුකී සත්‍යාපන ප්‍රකාරයේදී අවසන් ඇතුළු වීමම භාවිතා කල යුතුදැයි සඳහන් කරයි." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "භාවිත නාමය සිහියට නගන්න" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6406,48 +6419,48 @@ msgstr "" "වන 0 න් අදහස් වනුයේ එය වත්මන් සැසිය සඳහ පමණක් තබාගෙන බ්‍රව්සරය වැසීමෙන් පසු ඉවත් කල යුතුය " "යන්නය. විශ්වාසදායි නොවන පරිසරයන් සඳහා මෙම පෙරනිමි අගය නිර්දේශිතය." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "ඇතුල් වීමේ කුකිය රඳවාගන්න" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "ලොගින් කුකියේ වලංගු කාලය (තත්පර වලින්) සඳහන් කරන්න." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "ලොගින් කුකියේ වලංගුතාවය" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "LONGTEXT තීර සඳහා දෙගුණයක් විශාල පෙළපෙදෙසක්." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEXT සඳහා විශාල පෙළ පෙදෙසක්" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "SQL විමසුම පෙන්වීමේදී භාවිතා කල යුතු උපරිම අනුලකුණු ගණන." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "දර්ෂිත SQL සඳහා උපරිම දිග" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "භාවිතා කරන්නන්ට වැඩි අගයක් සිටුවිය නොහැක" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "දත්තගබඩා ලයිස්තුවේ උපරිම ලෙස පෙන්විය යුතු දත්තගබඩා ගණන." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "උපරිම දත්තගබඩා" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " @@ -6457,23 +6470,23 @@ msgid "" "the navigation tree." msgstr "යාත්‍රණ ගසෙහි එක පිටුවක පෙන්විය හැකි අයිතම ගණන." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum items in branch" msgid "Maximum items on first level" msgstr "අත්තක උපරිම අයිතම ගණන" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "යාත්‍රණ ගසෙහි එක පිටුවක පෙන්විය හැකි අයිතම ගණන." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "අත්තක උපරිම අයිතම ගණන" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6481,19 +6494,19 @@ msgstr "" "ප්‍රථිඵල පිරික්සීමේදී එකවර පෙන්විය යුතු පේළි ගණන. ප්‍රතිඵලයේ ඊට වඩා පේළි ඇත්නම් \"පෙර\" සහ \"මීළඟ" "\" සබැඳි පෙන්වයි." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "පෙන්විය යුතු උපරිම පේළි ගණන" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "වගු ලයිස්තුවේ උපරිම ලෙස පෙන්විය යුතු වගු ගණන." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "උපරිම වගු" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6501,41 +6514,41 @@ msgstr "" "විධානවලියකට වෙන් කිරීමට අවසර ඇති බයිට ගණන, උදා. [kbd]32M[/kbd] (අසීමිත බයිට ගණනක් සඳහා " "[kbd]0[/kbd])." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "මතක සීමාව" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show databases navigation as tree" msgstr "යාත්‍රණ පැනලයේ ලාංඡනය පෙන්වන්න" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "යාත්‍රණ පැනලයේ ලාංඡනය පෙන්වන්න." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "ලාංඡනය පෙන්වන්න" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "යාත්‍රණ පැනලයේ දැක්වෙන ලාංඡනය සබැඳිය යුතු URL." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "ලාංඡනය හා සබැඳි URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6543,141 +6556,141 @@ msgstr "" "සබැඳි පිටුව ප්‍රධාන කවුළුව ([kbd]main[/kbd]) තුල හෝ නව කවුළුවක් ([kbd]new[/kbd]) තුල " "විවෘත කරන්න." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "ලාංඡනයේ සබැඳුම" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "සේවාදායක තේරීම යාත්‍රණ පැනලයේ ඉහල පෙන්වන්න." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "සේවාදායක තේරීම පෙන්වන්න" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "ක්ෂණික ප්‍රවේශය අයිකනය සඳහා ඉලක්කය" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "ක්ෂණික ප්‍රවේශය අයිකනය සඳහා ඉලක්කය" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "පෙරහන් කවුළුව පෙන්වීමට අවම වශයෙන් තිබිය යුතු අයිතම (වගු, දසුන්, නෛත්‍යක සහ සිද්ධි) ගණන." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "වගු පෙරහන් කවුළුව පෙන්වීමට අවම වශයෙන් තිබිය යුතු අයිතම ගණන" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "දත්තගබඩා පෙරහන් කවුළුව පෙන්වීමට අවම වශයෙන් තිබිය යුතු දත්තගබඩා ගණන" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "යාත්‍රණ ගසෙහි අයිතම සමූහගත කරන්න (පහත සඳහන් වෙන්කරණය මත තීරණය වේ)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "ගසෙහි අයිතම සමූහගත කරන්න" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "දත්තගබඩා ලැයිස්තුව ගසක ආකාරයෙන් පෙන්වීමේදී එක් එක් මට්ටම් වෙන කරන සලකුණ." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "දත්තගබඩා ගසෙහි වෙන්කරණය" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "වගු ලැයිස්තුව ගසක ආකාරයෙන් පෙන්වීමේදී එක් එක් මට්ටම් වෙන කරන සලකුණ." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "වගු ගසෙහි වෙන්කරණය" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "වගු ගසෙහි උපරිම මට්ටම් ගණන" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "කර්සරයෙන් දැක්වෙන සේවාදායකය ඉස්මතු කරන්න." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "ඉස්මතු කිරීම සක්‍රීය කරන්න" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Iconic navigation bar" msgid "Enable navigation tree expansion" msgstr "අයිකන සහිත යාත්‍රණ පටිය" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "මෑතදී භාවිතා කල වගු ලයිස්තුවේ පෙන්විය යුතු වගු ගණන; අක්‍රීය කිරීමට 0 යොදන්න." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable." msgid "Maximum number of favorite tables; set 0 to disable." msgstr "මෑතදී භාවිතා කල වගු ලයිස්තුවේ පෙන්විය යුතු වගු ගණන; අක්‍රීය කිරීමට 0 යොදන්න." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "මෑතදී භාවිතා කල වගු" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "මේවා සංස්කරණය කරන්න, පිටපත් කරන්න සහ ඉවත් කරන්න යන සබැඳිය." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "වගුවේ පේළි වලට අදාල සබැඳි පෙන්විය යුත්තේ කොහේද යන වග" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "වගු හා දත්තගබඩා වල නම් අනුපිළිවෙලට සැකසීම සඳහා ස්වභාවික අනුපිළිවෙල භාවිතා කරන්න." -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "ස්වභාවික අනුපිළිවල" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "භාවිතා කල යුත්තේ අයිකන පමණක්, පෙළ පමණක්, හෝ මේ දෙකම." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Iconic navigation bar" msgid "Table navigation bar" msgstr "අයිකන සහිත යාත්‍රණ පටිය" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "HTTP හුවමාරුවල වේගය වැඩි කිරීම සඳහා GZip ප්‍රතිදාන ගොඩගැසීම භාවිතා කරන්න." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip ප්‍රතිදාන ගොඩගැසීම" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6685,19 +6698,19 @@ msgstr "" "[kbd]SMART[/kbd] - එනම් TIME, DATE, DATETIME සහ TIMESTAMP තීර සඳහා අවරෝහණ " "පිළිවෙලත්, අනෙකුත් තීර සඳහා ආරෝහණ පිළිවෙලත්." -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "පෙරනිමි අනුපිළිවෙල" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "MySQL දත්තගබඩා වෙත කල්පවතිනා සබඳතා භාවිතා කරන්න." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "කල්පවතිනා සබඳතා" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6706,22 +6719,22 @@ msgstr "" "phpMyAdmin වින්‍යාස ගබඩාවට අවශ්‍ය එක් වගුවක් හෝ සොයාගත නොහැකි අවස්ථාවකදී දත්තගබඩා සැකිල්ල " "පිටුවේ පෙන්වන පෙරනිමි අනතුරු ඇඟවීම අක්‍රීය කරන්න." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -6734,82 +6747,82 @@ msgstr "" "phpMyAdmin වින්‍යාස ගබඩාවට අවශ්‍ය එක් වගුවක් හෝ සොයාගත නොහැකි අවස්ථාවකදී දත්තගබඩා සැකිල්ල " "පිටුවේ පෙන්වන පෙරනිමි අනතුරු ඇඟවීම අක්‍රීය කරන්න" -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 #, fuzzy #| msgid "Allow to display all the rows" msgid "How to display the menu tabs" msgstr "සියලුම පේළි දර්ශනය කිරීමට ඉඩ ලබාදෙයි" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "ද්වීමය තීරු ආරක්ෂා කරන්න" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "ස්ථායී විමසුම් ඉතිහාසය" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, fuzzy #| msgid "How many queries are kept in history" msgid "How many queries are kept in history." msgstr "කොපමණ විමසුම් ප්‍රමාණයක් ඉතිහාසයේ රඳවා ගත යුතුද යන්න" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "විමසුම් ඉතිහාසයේ ප්‍රමාණය" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "පටිගත කිරීමේ යන්ත්‍රය" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "වගුව සැකසූ අනුපිළිවෙල මතක තබාගන්න" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "පෙරනිමි අනුපිළිවෙල" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -6817,89 +6830,89 @@ msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "පේළි x සංඛ්‍යාවකට වරක් ශීර්ෂ පුනරාවර්තනය කරන්න. අක්‍රීය කිරීමට [kbd]0[/kbd] යොදන්න" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "ශීර්ෂක පුනරාවර්තනය" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "ජාලය තුල සංස්කරණය: සංස්කරණය ඇරඹිය යුත්තේ" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "සබැඳි දර්ශන තීරය" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "සේවාදායක පෙන්වුම් විකල්ප." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "ජාලය තුල සංස්කරණය: සංස්කරණය කල කොටු සියල්ල එකවර සුරකින්න" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "සුරැකුම් ඩිරෙක්ටරිය" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "භාවිතා නොකෙරේ නම් හිස්ව තබන්න" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "දායකයන් සඳහා අවසර ලබා දීමේ අනුපිළිවෙල" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "පෙරනිමි අගයන් සඳහා හිස්ව තබන්න" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "දායක සඳහා අවසර දීමේ රීති" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "මුරපදයක් රහිතව ඇතුල් වීමට ඉඩ ලබා දෙන්න" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "root ලෙස ඇතුල් වීමට ඉඩ දෙන්න" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "සැසි අගය" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -6913,21 +6926,21 @@ msgstr "" "[a@http://swekey.com]SweKey දෘඩාංග සත්‍යාපනය[/a] සඳහා අවශ්‍ය වින්‍යාස ගොනුව අඩංගු " "ස්ථානය.(ඔබගේ ලියකියවිලි මූලයේ අඩංගු නැත. යෝජිත: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey වින්‍යාස ගොනුව" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "භාවිතා කල යුතු සත්‍යාපන ක්‍රමය" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "සත්‍යාපන වර්ගය" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6935,11 +6948,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]පොත්සලකුණු[/a] විශේෂාංගය අනවශ්‍ය නම් හිස්ව " "තබන්න. යෝජිත: [kbd]pma__bookmark[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "පොත්සලකුණු ගොනුව" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -6951,35 +6964,35 @@ msgstr "" "තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න. යෝජිත: [kbd]pma__column_info[/" "kbd]" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "තීර විස්තර ගොනුව" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "MySQL සේවාදායකය වෙත සම්බන්දතාව හකුළුවන්න" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "සම්බන්ධතාව හකුළුවන්න" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "සම්බන්ධතා වර්ගය" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "පරිපාලක භාවිතා කරන්නාගේ මුරපදය" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -6992,11 +7005,11 @@ msgstr "" "සීමිත අවසර සහිතව වින්‍යාස කරන ලද විශේෂ MySQL භාවිතා කරන්නෙක්, වැඩි විස්තර සඳහා [a@http://" "wiki.phpmyadmin.net/pma/controluser]විකිය[/a] බලන්න" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "පරිපාලක භාවිතා කරන්නා" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 #, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " @@ -7008,11 +7021,11 @@ msgstr "" "වින්‍යාස ගබඩාව තබා ගැනීම සඳහා විකල්ප දායකයෙක්; දැනට අර්ථ දක්වා ඇති දායකයා භාවිතා කිරීමට " "හිස්ව තබන්න" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" 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 " @@ -7025,31 +7038,31 @@ msgstr "" "වින්‍යාස ගබඩාව තබා ගැනීම සඳහා විකල්ප දායකයෙක්; දැනට අර්ථ දක්වා ඇති දායකයා භාවිතා කිරීමට " "හිස්ව තබන්න" -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "පාලක පෝර්ටය" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, fuzzy #| msgid "Hide databases matching regular expression (PCRE)" msgid "Hide databases matching regular expression (PCRE)." msgstr "Regular expression (PCRE) හා ගැළපෙන දත්තගබඩා සඟවන්න" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA භාවිතය අක්‍රීය කරන්න" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "දත්තගබඩා සඟවන්න" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma__history" @@ -7061,41 +7074,41 @@ msgstr "" "SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" "pma__history[/kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL විමසුම් ඉතිහාස වගුව" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, fuzzy #| msgid "Hostname where MySQL server is running" msgid "Hostname where MySQL server is running." msgstr "MySQL සේවාදායකය ක්‍රියාත්මක දායකයේ දායක නාමය" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "සේවාදායකයේ දායක නාමය" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "පිටවිය යුතු URLය" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "ගබඩා කල යුතු උපරිම වගු අභිරුචි ගණන" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "අනුගාමි සේවාදායකයේ තත්ත්ව වගුව බලන්න" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7107,13 +7120,13 @@ msgstr "" "ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" "pma__pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns 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__table_coords[/" @@ -7125,38 +7138,38 @@ msgstr "" "ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" "pma__table_coords[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "මුරපදය නොමැතිව සම්බන්ධ වීමට උත්සාහ කරන්න" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "මුරපදය නොමැතිව සම්බන්ධ වන්න" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "සඳහන් දත්තගබඩා පමණක් පෙන්වන්න" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, fuzzy #| msgid "Leave empty if not using config auth" msgid "Leave empty if not using config auth." msgstr "config සත්‍යාපනය භාවිතා නොකරයි නම් හිස්ව තබන්න" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "config සත්‍යාපනය සඳහා මුරපදය" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7167,11 +7180,11 @@ msgstr "" "ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" "pma__pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF ක්‍රමනුරූපයේ පිටු පිලිබඳ විස්තර අඩංගු වගුව" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7186,22 +7199,22 @@ msgstr "" "සඳහා [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] බලන්න. විශේෂාංග අනවශ්‍ය " "නම් හිස්ව තබන්න, යෝජිත: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "සර්වරයේ පොර්ට්" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7213,11 +7226,11 @@ msgstr "" "සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව " "තබන්න, යෝජිත: [kbd]pma__recent[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" 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, " @@ -7229,13 +7242,13 @@ msgstr "" "සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව " "තබන්න, යෝජිත: [kbd]pma__recent[/kbd]" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "විචල්‍යනයන්" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7247,11 +7260,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන සබැඳි[/a] " "විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__relation[/kbd]" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "සබැඳුම් දත්ත ඇතුලත් වගුව" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7263,35 +7276,35 @@ msgstr "" "උදාහරණයක් ලෙස [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]සත්‍යාපන ක්‍රම[/" "a] බලන්න" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Signon සැසි නාමය" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Signon URLය" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "සර්වරයේ සොකට්" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL භාවිතා කරන්න" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7303,13 +7316,13 @@ msgstr "" "ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" "pma__table_coords[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF ක්‍රමානුරූපය: වගු ඛණ්ඩාංක" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " @@ -7321,11 +7334,11 @@ msgstr "" "දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: [kbd]" "pma__table_info[/kbd]" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "පෙන්විය යුතු තීර පිළිබඳ දත්ත ඇතුලත් වගුව" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables' UI preferences across sessions, " @@ -7337,11 +7350,11 @@ msgstr "" "සැසි අතර \"කල් පවත්නා\" ලෙස වගු අතුරු මුහුණත සම්බන්ධ අභිරුචි තබාගැනීමේ විශේෂාංගය අනවශ්‍ය නම් " "හිස්ව තබන්න, යෝජිත: [kbd]pma__table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "UI අභිරුචි පිළිබඳ දත්ත ඇතුලත් වගුව" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7349,41 +7362,41 @@ msgstr "" "දත්තගබඩාවක් සෑදීමේදී ලොගයේ පළමු පේළිය ලෙස DROP DATABASE IF EXISTS ප්‍රකාශයක් එක් " "කරන්නේද යන වග." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "DROP DATABASE එක් කරන්න" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "DROP TABLE එක් කරන්න" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "DROP VIEW එක් කරන්න" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "නව අනුවාදයක් සඳහා ස්වයංක්‍රීය-සැදුම විසින් භාවිතා කලයුතු ප්‍රකාශන ලැයිස්තුව සඳහන් කරයි." -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "අවධානය සක්‍රීය කල යුතු ප්‍රකාශ" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -7394,21 +7407,21 @@ msgid "" msgstr "" "SQL විමසුම් අවධානය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__tracking[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL විමසුම් අවධානයට අදාළ වගුව" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "අවධාන ක්‍රියාවලිය විසින් වගු සහ දසුන් සඳහා ස්වයන්ක්‍රීයව අනුවාද සාදන්නේ ද යන වග." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "ස්වයංක්‍රියව අනුවාද සාදන්න" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7420,37 +7433,37 @@ msgstr "" "භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: " "[kbd]pma__userconfig[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "භාවිතා කරන්නාගේ අභිරුචි වගුව" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "වගු භාවිතා කරන්න" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "දායක වගුව භාවිතා කරන්න" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7462,61 +7475,61 @@ msgstr "" "භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: " "[kbd]pma__userconfig[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "config සත්‍යාපනය සඳහා භාවිතා කරන්නා" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "සේවාදායකය සඳහා පරිශ්‍රීලක මිත්‍ර විස්තරයක්. එය වෙනුවට දායක නාමය පෙන්වීමට හිස්ව තබන්න." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "සියලුම පේළි දර්ශනය කිරීමට ඉඩ ලබාදෙයි" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "මුරපදය වෙනස් කිරීමේ පෝරමය පෙන්වන්න" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "දත්තගබඩාවක් සෑදීමේ පෝරමය පෙන්වන්න" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 #, 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "සෑදූ වේලාව පෙන්වන්න" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last update timestamp for all tables" @@ -7524,11 +7537,11 @@ msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "සියලුම වගු සඳහා අවසන් වරට වගුව යාවත්කාලීන කල වේලාව දැක්වෙන තීරුව පෙන්වන්න හෝ සඟවන්න" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "අවසන් වරට යාවත්කාලීන කල වේලාව පෙන්වන්න" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last check timestamp for all tables" @@ -7536,11 +7549,11 @@ msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "සියලුම වගු සඳහා අවසන් වරට වගුව පරීක්ෂා කල වේලාව දැක්වෙන තීරුව පෙන්වන්න හෝ සඟවන්න" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "අවසන් වරට පරීක්ෂා කල වේලාව පෙන්වන්න" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 #, fuzzy #| msgid "" #| "Defines whether or not type fields should be initially displayed in edit/" @@ -7551,31 +7564,31 @@ msgid "" msgstr "" "සංස්කරණ/ඇතුළුකිරීම් ප්‍රකාරයේදී තීර වර්ගය දක්වන ක්ෂේත්‍රය ආරම්භයේදී පෙන්විය යුතුද නැතිද යන වග" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "ක්ෂේත්‍රයේ වර්ගය පෙන්වන්න" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "ශ්‍රිතය තීරුව පෙන්වන්න" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, fuzzy #| msgid "Whether to show hint or not" msgid "Whether to show hint or not." msgstr "ඉඟිය පෙන්විය යුතුද නැත්ද යන වග" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "ඉඟිය පෙන්වන්න" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7587,15 +7600,15 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] ප්‍රතිදානය වෙත " "සබැඳුම පෙන්වන්න" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "phpinfo() සබැඳුම පෙන්වන්න" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "MySQL සේවාදායකය පිලිබඳ විස්තරාත්මක තොරතුරු පෙන්වන්න" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -7603,11 +7616,11 @@ msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "phpMyAdmin විසින් සාදන ලද විමසුම් පෙන්විය යුතුදැයි සඳහන් කරයි" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "SQL විමසුම් පෙන්වන්න" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 #, fuzzy #| msgid "" #| "Defines whether the query box should stay on-screen after its submission" @@ -7615,22 +7628,22 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "විමසුම ක්‍රියාත්මක කිරීමෙන් පසුව විමසුම් කවුළුව තිරය මත රඳවා ගත යුතුදැයි සඳහන් කරයි" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "විමසුම් කවුළුව රඳවාගන්න" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "සංඛ්‍ය ලේඛන පෙන්වන්න" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy #| msgid "" #| "Mark used tables and make it possible to show databases with locked tables" @@ -7638,21 +7651,21 @@ msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "භාවිතා කරන ලද වගු සලකුණු කර අගුලු ළෑ වගු සහිත දත්තගබඩා පෙන්වීමට ඉඩ සලසන්න" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "අගුලු ළෑ දත්තගබඩා මඟහරින්න" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 #, fuzzy #| msgid "A warning is displayed on the main page if Suhosin is detected" msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Suhosin ඇති බව හඳුනාගතහොත් ප්‍රධාන පිටුවේ අනතුරු ඇඟවීමක් පෙන්වයි" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin අනතුරු ඇඟවීම" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7666,13 +7679,13 @@ msgstr "" "phpMyAdmin වින්‍යාස ගබඩාවට අවශ්‍ය එක් වගුවක් හෝ සොයාගත නොහැකි අවස්ථාවකදී දත්තගබඩා සැකිල්ල " "පිටුවේ පෙන්වන පෙරනිමි අනතුරු ඇඟවීම අක්‍රීය කරන්න" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "ලොගින් කුකියේ වලංගුතාවය" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 #, fuzzy #| msgid "" #| "Textarea size (columns) in edit mode, this value will be emphasized for " @@ -7684,11 +7697,11 @@ msgstr "" "සංස්කරණ ප්‍රකාරයේදී පෙළ පෙදෙසේ පළල (තීරු ගණනින්). මෙම අගය වැඩි කිරීමෙන් SQL විමසුම් පෙළ " "පෙදෙසේද (*2) විමසුම් කවුළුවේද (*1.25) පළල ලබා ගැනේ" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "පෙළ පෙදෙසේ පළල" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 #, fuzzy #| msgid "" #| "Textarea size (rows) in edit mode, this value will be emphasized for SQL " @@ -7700,39 +7713,39 @@ msgstr "" "සංස්කරණ ප්‍රකාරයේදී පෙළ පෙදෙසේ උස (පේලි ගණනින්). මෙම අගය වැඩි කිරීමෙන් SQL විමසුම් පෙළ " "පෙදෙසේද (*2) විමසුම් කවුළුවේද (*1.25) උස ලබා ගැනේ" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "පෙළ පෙදෙසේ උස" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 #, 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:784 +#: libraries/config/messages.inc.php:786 #, 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "පෙරනිමි නාමය" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 #, 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:788 +#: libraries/config/messages.inc.php:790 #, 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:790 +#: libraries/config/messages.inc.php:792 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -7740,58 +7753,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "උඩුගත කිරීමේ ඩිරෙක්ටරිය" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, fuzzy #| msgid "Allow for searching inside the entire database" msgid "Allow for searching inside the entire database." msgstr "සම්පූර්ණ දත්තගබඩාව තුලම සෙවීම සඳහා ඉඩ ලබා දෙන්න" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "දත්තගබඩා සෙවීම භාවිතා කරන්න" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "සිටුවම් හි ක්‍රමලේඛනය කරන්නන් සදහා වූ ටැබය සක්‍රීය කරන්න" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "නවතම අනුවාදය සඳහා පරීක්ෂා කරන්න" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 #, 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7799,34 +7812,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "භාවිත නාමය" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "මුරපදය" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -7838,55 +7851,55 @@ msgstr "" "ආනයන අපනයන මෙහෙයුම් සඳහා [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP" "[/a] හැකිළීම යොදාගැනීම සක්‍රීය කරන්න" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "සර්වරයේ පොර්ට්" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "ක්‍රියාත්මක කරන ලද විමසුම්" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7908,44 +7921,44 @@ msgstr "HTTP සත්‍යාපනය" msgid "Signon authentication" msgstr "Signon සත්‍යාපනය" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "LOAD DATA භාවිතයෙන් CSV" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "OpenDocument පැතුරුම්පත" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "කඩිනම්" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "අභිමත" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS එක්සෙල් සඳහා CSV" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "මයික්‍රොසොෆ්ට් වර්ඩ් 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument පෙළ" @@ -8174,20 +8187,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "මුරපදයක් නැත" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "මුරපදය:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "නැවත ටයිප් කරන්න:" @@ -8327,12 +8340,12 @@ msgstr ", @TABLE@ වගුවේ නාමයෙන් ප්‍රතිස් #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:526 msgid "use this for future exports" @@ -8847,8 +8860,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9324,7 +9337,7 @@ msgstr "පිටවන්න" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin ලියකියවිලි" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -10007,8 +10020,8 @@ msgstr "%s වෙත ආයුබෝවන්" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "ඔබ වින්‍යාස ගොනුවක් නොසෑදුවා විය යුතුය. වින්‍යාස ගොනුවක් සෑදීමට %1$sපිහිටුවීමේ විධානාවලිය%2$s " "භාවිතා කිරීම අවශ්‍ය විය හැකිය." @@ -10238,7 +10251,7 @@ msgstr "තීර නම් පළමු පේළියේ යොදන්න:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "දායකයා:" @@ -11259,22 +11272,22 @@ msgstr "" "නම් පහත පේළිය [mysqld] කොටසට ඇතුලත් කරන්න:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "භාවිත නාමය:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "භාවිත නාමය" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "මුරපදය" @@ -11302,10 +11315,10 @@ msgstr "සේවාදායකයේ හැඳුනුම් අංකය" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "දායකයා" @@ -11318,38 +11331,38 @@ msgstr "" "--report-host=host_name විකල්පය සමඟ ඇරඹි අනුගාමි සේවාදායක පමණක් මෙම ලැයිස්තුවේ පෙන්වයි." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "ඕනෑම දායකයෙක්" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "ස්වදේශී" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "මෙම දායකයා" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "ඕනෑම භාවිතා කරන්නෙක්" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "දායක වගුව භාවිතා කරන්න" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11357,7 +11370,7 @@ msgstr "" "දායක වගුව භාවිතා කෙරෙයි නම් මෙම ක්ෂේත්‍රය නොසැලකෙන අතර දායක වගුවේ ඇති අගයන් භාවිතා කෙරේ." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "නැවත ටයිප් කරන්න" @@ -12092,7 +12105,7 @@ msgstr "කිසිවක් නැත" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12159,14 +12172,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "වගු-විශේෂී වරප්‍රසාද" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "සටහන: MySQL වරප්‍රසාද නම් සඳහන් වනුයේ ඉංග්‍රීසියෙනි." @@ -12175,7 +12188,7 @@ msgid "Administration" msgstr "පරිපාලනය" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" @@ -12184,7 +12197,7 @@ msgid "Global" msgstr "ගෝලීය" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" @@ -12201,260 +12214,260 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "ලොගින තොරතුරු" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "මුරපදය වෙනස් නොකරන්න" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s ගේ මුරපදය සාර්ථකව වෙනස් කරන ලදි." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "ඔබ %s සඳහා වරප්‍රසාද අහෝසි කර ඇත" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "භාවිතා කරන්නෙක් එක් කරන්න" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්‍රසාද එයට දෙන්න" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය\\_%)" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" දත්තගබඩාව සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" වෙත ප්‍රවේශ වරප්‍රසාද ඇති භාවිතා කරන්නන්" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "භාවිතා කරන්නා එක් කරන ලදි." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "භාවිතා කරන්නා" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "භාවිතා කරන්නන් හමු නොවිණි." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "ඕනෑම" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "ගෝලීය" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "අව්‍යවස්ථිත කාඩ්පත" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "වගු විශේෂිත" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "අහෝසි කරන්න" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "සේවාදායකය සංස්කරණය කරන්න" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… පැරණි එක තබා ගන්න." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… පැරැන්නෙන් සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "තීර-විශේෂී වරප්‍රසාද" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database:" msgid "Add privileges on the following database(s):" msgstr "පහත දත්තගබඩාවට වරප්‍රසාද එක් කරන්න:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "භාවිතා කරන්නන්ගේ සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "වරප්‍රසාද පූරණය කෙරෙමින්" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "ඔබ %s සඳහා වරප්‍රසාද අලුත් කර ඇත." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s ඉවත් කරමින් පවතී" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "සාර්ථකව වරප්‍රසාද පූරණය කරන්න ලදි." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "%s සඳහා වරප්‍රසාද" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "නව භාවිතා කරන්නෙක්" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "වරප්‍රසාද සංස්කරණය කරන්න:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "භාවිතා කරන්නන් පිළිබඳ දළ විශ්ලේෂණය" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. " "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " "වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍රසාද වගුවේ හමු නොවිණි." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." @@ -14192,21 +14205,21 @@ msgstr "සූචියේ නම:" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "සූචි වර්ගය:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "භාවිතා කරන්නා:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "ටීකාව:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -14476,8 +14489,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" -"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %" -"sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." +"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා " +"%sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." #: libraries/user_preferences.lib.php:130 msgid "Could not save configuration" @@ -15203,8 +15216,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15324,8 +15337,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/sk.po b/po/sk.po index 6e7d1792ed..1c3383df9b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-09 21:15+0200\n" "Last-Translator: Jozef Pistej \n" "Language-Team: Slovak \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 2.3-dev\n" @@ -67,7 +67,7 @@ msgstr "Komentáre k tabuľke:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Stĺpec" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Linkovať na" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Primárny" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Nie" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "kliknite %ssem%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabuľka" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Riadkov" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Veľkosť" @@ -374,9 +374,9 @@ msgstr "Stav" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -571,15 +571,15 @@ msgstr "Pridať geometriu" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -612,8 +612,8 @@ msgstr "Nekompletné parametre" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." @@ -701,7 +701,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Späť" @@ -724,7 +724,7 @@ msgid "General Settings" msgstr "Všeobecné nastavenia" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Zmeniť heslo" @@ -797,7 +797,7 @@ msgstr "Informácie o verzii:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentácia" @@ -928,8 +928,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Webový server beží so Suhosin-patchom. Možné dôsledky konzultujte s %" -"sdokumentáciou%s." +"Webový server beží so Suhosin-patchom. Možné dôsledky konzultujte s " +"%sdokumentáciou%s." #: js/messages.php:29 libraries/import.lib.php:125 sql.php:143 msgid "\"DROP DATABASE\" statements are disabled." @@ -1053,7 +1053,7 @@ msgstr "Pridať index" msgid "Edit Index" msgstr "Upraviť index" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Pridať %s polí do indexu" @@ -1080,7 +1080,7 @@ msgstr "Musíte pridať aspoň jeden stĺpec." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Ukážka SQL" @@ -1109,12 +1109,12 @@ msgstr "Názov hostiteľa je prázdny!" msgid "The user name is empty!" msgstr "Meno používateľa je prázdne!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Heslo je prázdne!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" @@ -1314,7 +1314,7 @@ msgstr "Pridajte prosím aspoň jednu hodnotu do série!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1608,7 +1608,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1820,7 +1820,7 @@ msgstr "Zobrazit vyhľadávacie pole" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2064,7 +2064,7 @@ msgstr "Obsah datového bodu" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorovať" @@ -2236,7 +2236,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Zobraziť všetko" @@ -2334,7 +2334,7 @@ msgstr "Skryť panel" msgid "Show hidden navigation tree items." msgstr "Zobraziť skryté položky navigácie." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Prepojiť s hlavným panelom" @@ -2826,16 +2826,16 @@ msgid "Delete" msgstr "Zmazať" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2951,7 +2951,7 @@ msgid "During current session" msgstr "Počas aktuálnej relácie" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3329,8 +3329,8 @@ msgstr "SQL dopyt bol úspešne vykonaný." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." @@ -3366,6 +3366,7 @@ msgstr "Výber:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3381,12 +3382,12 @@ msgstr "Zmeniť" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3580,7 +3581,7 @@ msgstr "" "odstránený." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3595,11 +3596,11 @@ msgstr "Pohľad" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3615,7 +3616,7 @@ msgstr "Štruktúra" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3641,9 +3642,9 @@ msgstr "Vložiť" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Oprávnenia" @@ -3703,9 +3704,9 @@ msgid "Central columns" msgstr "Centrálne stĺpce" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Databázy" @@ -3816,7 +3817,7 @@ msgid "Recent" msgstr "Nedávne" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Obľúbené tabuľky" @@ -3887,7 +3888,7 @@ msgstr "Zoraďovanie" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4251,20 +4252,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Číslo s plávajúcou desatinnou čiarkou, rozsahy: od -3,402823466E+38 do -" -"1,175494351E-38; 0; od 1,175494351E-38 do 3,402823466E+38" +"Číslo s plávajúcou desatinnou čiarkou, rozsahy: od -3,402823466E+38 do " +"-1,175494351E-38; 0; od 1,175494351E-38 do 3,402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Číslo s dvojitou presnosťou a plávajúcou desatinnou čiarkou, rozsah: od -" -"1,7976931348623157E+308 do -2,2250738585072014E-308; 0; od " +"Číslo s dvojitou presnosťou a plávajúcou desatinnou čiarkou, rozsah: od " +"-1,7976931348623157E+308 do -2,2250738585072014E-308; 0; od " "2,2250738585072014E-308 do 1,7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4552,7 +4553,7 @@ msgstr "Maximálna veľkosť: %s%s" msgid "MySQL said: " msgstr "MySQL hlási: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Vysvetliť SQL" @@ -4564,7 +4565,7 @@ msgstr "Preskočiť vysvetlenie SQL" msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" @@ -4675,13 +4676,13 @@ msgstr "Popis" msgid "Use this value" msgstr "Použiť túto hodnotu" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5072,7 +5073,7 @@ msgid "Set value: %s" msgstr "Nastavená hodnota: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Obnoviť východziu hodnotu" @@ -5467,23 +5468,35 @@ msgstr "Panel, ktorý je zobrazený pri prístupe k tabuľke." msgid "Default table tab" msgstr "Východzí panel tabuľky" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Použiť opačný apostrof pri názvoch tabuliek a polí" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Použiť opačný apostrof pri názvoch tabuliek a polí" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Určuje, či akcie štruktúry tabuliek majú byť skryté." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Skryť akcie štruktúry tabuľky" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Zobraziť prehľad serverov ako zoznam namiesto rozbaľovacieho menu." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Zobraziť servery ako zoznam" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5491,50 +5504,50 @@ msgstr "" "Vypnúť hromadné operácie pre údržbu tabuliek, ako je optimalizácia alebo " "opravy vybraných tabuliek v databáze." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Vypnúť hromadné operácie s tabuľkami" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" "Nastavte dĺžku behu skriptu v sekundách ([kbd]0[/kbd] znamená bez obmedzení)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maximálny čas behu" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Pridať údaj %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Uložiť ako súbor" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Znaková sada súboru" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formát" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Kompresia" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5544,60 +5557,60 @@ msgstr "Kompresia" msgid "Put columns names in the first row" msgstr "Pridať názvy polí na prvý riadok" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Polia uzatvorené do" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Polia uvedené pomocou" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Nahradiť NULL hodnoty" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Odstrániť konce riadkov (CRLF) z polí" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Stĺpce ukončené" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Riadky ukončené" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Verzia Excelu" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Vzor pre názov databázy" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Vzor pre názov servera" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Vzor pre názov tabuľky" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5606,137 +5619,137 @@ msgstr "Vzor pre názov tabuľky" msgid "Dump table" msgstr "Vypísať tabuľku" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Zahrnúť nadpis tabuľky" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Nadpis tabuľky" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Nadpis pokračovania tabuľky" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Návestie" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME typ" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Prepojenia" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Metóda exportu" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Uložiť na server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Prepísať existujúce súbory" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Zapamätať si vzor pre názov súboru" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Použiť opačný apostrof pri názvoch tabuliek a polí" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Voľby CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Dátum vytvorenia, poslednej zmeny a kontroly" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Použiť oneskorené vloženia" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Vypnúť kontrolu cudzích kľúčov" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exportovať pohľady (views) ako tabuľky" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Pridať %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Použiť hexadecimálne zobrazenie pre BINARY & BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Použiť IGNORE" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Použitá syntax pre vkladanie dát" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maximálna veľkosť vytvoreného príkazu" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Typ exportu" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Uzatvoriť príkazy v transakcii" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exportovať čas v UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Vynútiť zabezpečené spojenie pri použití phpMyAdmina." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Vynutit SSL spojenie" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5744,142 +5757,142 @@ msgstr "" "Poradie radenia položiek v rozbaľovacej ponuke cudzích kľúčov; [kbd]obsah[/" "kbd] sú referenčné dáta, [kbd]id[/kbd] je hodnota kľúča." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Poradie cudzích kľúčov v rozbaľovacej ponuke" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Pokiaľ je dostupných menej položiek, bude použitá rozbaľovacia ponuka." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Limit cudzích kľúčov" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Režim prezerania" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Prispôsobiť režim prezerania." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Prispôsobenie východzích nastavení." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV dáta" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Vývojár" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Nastavenia pre vývojárov phpMyAdmina." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Režim úprav" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Prispôsobenie režimu úprav." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Východzie nastavenia exportu" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Prispôsobiť východzie nastavenia exportu." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funkcie" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Všeobecné" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Nastaviť často používané nastavenia." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Východzie nastavenia importu" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Prispôsobiť východzie nastavenia importu." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Import / export" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Nastaví adresáre pre import a export a voľby kompresie." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Nastavenia zobrazenia databáz." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigačný panel" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Prizpôsobiť vzhľad navigačného panela." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servery" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Nastavenie zobrazenia serverov." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Nastavenie zobrazenia tabuliek." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Hlavný panel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Ostatné základné nastavenia" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Nastavenia, ktoré sa nedajú zaradiť inde." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Mená stránok" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5888,19 +5901,19 @@ msgstr "" "documentácii[/doc] nájdete špeciálne reťazce, ktoré môžete použiť na " "získanie špeciálnych hodnôt." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "SQL okno" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Prispôsobiť nastavenia okna dopytov" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Zabezpečenie" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -5908,23 +5921,23 @@ msgstr "" "Pripomíname, že phpMyAdmin je len užívateľské rozhranie a jeho funkcie " "neobmedzujú MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Základné nastavenia" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Overenie" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Nastavenia prihlasovania." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Konfigurácia servera" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -5932,15 +5945,15 @@ msgstr "" "Pokročilá konfigurácia servera, nemeňte tieto nastavenia, pokiaľ neviete " "čoho sa týkajú." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Vložte parametre pripojenia servera." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Miesto uloženia konfigurácie" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -5950,11 +5963,11 @@ msgstr "" "prídavným funkciám, viď [doc@linked-tables]miesto uloženia konfigurácie [/" "doc] v dokumentácii." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Sledovanie zmien" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -5962,109 +5975,109 @@ msgstr "" "Sledovanie zmien vykonaných v databáze. Vyžaduje nastavenie miesta uloženia " "zmien phpMyAdmina." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Prispôsobebie možností exportu" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Prispôsobebie východzích nastavení importu" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Prispôsobiť navigačný panel" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Prispôsobiť hlavný panel" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL dopyty" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Pole pre SQL dopyty" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Prispôsobenie odkazov zobrazovaných v poliach pre SQL dopyty." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Nastavenia SQL dopytov." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Úvodná stránka" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Prispôsobenie úvodnej stránky." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Štruktúra databázy" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Vyberte, ktoré detaily sa majú zobrazovať v štruktúre databázy (zoznam " "tabuliek)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Štruktúra tabuľky" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Nastavenia štruktúry tabuliek (zoznam stĺpcov)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Panely" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Zvoľte, ako majú panely fungovať." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Zobraziť relačnú schému" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Veľkosť stránky" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Textové polia" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Prispôsobenie vstupných textových polí." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Prispôsobenie východzích nastavení" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Varovania" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Vypnúť niektoré varovania zobrazované phpMyAdminom." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6072,15 +6085,15 @@ msgstr "" "Povolí [a@http://sk.wikipedia.org/wiki/GZ_(súborový_formát)]gzip[/a] " "kompresiu pre importovanie a exportovanie." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Extra parametre pre iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6088,11 +6101,11 @@ msgstr "" "Pokiaľ je povolené, phpMyAdmin bude pokračovať v spracovaní viacprvkových " "dopytov, aj keď jeden z nich zlyhal." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignorovať chyby vo viacprvkových dopytoch" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6102,28 +6115,28 @@ msgstr "" "Týmto spôsobom sa môžu importovať aj veľké súbory, ale môže to zároveň " "spôsobiť problémy s transakciami." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Čiastočný import: povoliť prerušenie" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Vypnúť kontrolu cudzích kľúčov" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Neprerušovať pri chybe v príkaze INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Nahradiť dáta v tabuľke súborom" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6131,68 +6144,68 @@ msgstr "" "Východzí formát: Berte na vedomie, že tento zoznam závisí na umiestnení " "(databáza, tabuľka) a len SQL je stále dostupné." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formát importovaného súboru" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Použiť kľúčové slovo LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Mená stĺpcov na prvom riadku" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Neimportovať prázdne riadky" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Import mien (5.00 namiesto $5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importovať percentá ako desatinné čísla (0,12 namiesto 12,00%)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Počet dopytov, ktoré sa majú preskočiť od začiatku." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Čiastočný import: preskočiť dopyty" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Počiatočný stav pre posuvníky" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Koľko riadkov môže byť vložených naraz." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Počet vložených riadkov" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Maximálny počet znakov zobrazovaných v nečíselných poliach pri prechádzaní." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Obmedzenie počtu znakov" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6203,11 +6216,11 @@ msgstr "" "sa môže ľahko stať, že sa zabudnete odhlásiť z ostatných serverov, pokiaľ " "ich používate viac." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Vymazať všetky cookies pri prihlásení" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6215,11 +6228,11 @@ msgstr "" "Určuje, či sa má obnoviť predchádzajúce prihlásenie alebo nie pri " "prihlasovaní pomocou [kbd]cookie[/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Pamätať si užívateľské meno" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6231,48 +6244,48 @@ msgstr "" "sedenia a bude vymazaná pri zatvorení okna. Toto je odporúčané v " "nedôveryhodných prostrediach." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Uloženie prihlasovacej cookie" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Určuje, ako dlho je platná prihlasovacie cookie (v sekundách)." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Platnosť prihlasovacej cookie" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Zdvojnásobiť veľkosť editačného poľa pre stĺpec typu LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Väčšie editačné pole pre LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Maximálny počet znakov pri zobrazení SQL dopytu." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Mazimálna dĺžka zobrazeného SQL dopytu" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Uživatelia nemôžu nastaviť vyššiu hodnotu" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Maximálny počet databáz zobrazených v zozname databáz." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Najvyšší počet databáz" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6280,22 +6293,22 @@ msgstr "" "Počet položiek, ktoré sa zobrazia na každej stránke prvej úrovne navigačného " "stromu." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Maximálny počet položiek na prvej úrovni" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" "Počet položiek, ktoré sa zobrazia na každej stránke navigačného stromu." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Maximálny počet položiek vo vetve" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6303,19 +6316,19 @@ msgstr "" "Počet zobrazených riadkov pri prechádzaní sady výsledkov. Ak sada výsledkov " "obsahuje viac riadkov, zobrazia sa odkazy \"Predchádzajúci\" a \"Ďalší\"." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Maximálny počet zobrazených riadkov" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Maximálny počet tabuliek zobrazených v zozname tabuliek." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maximum tabuliek" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6323,39 +6336,39 @@ msgstr "" "Počet bytov, ktoré môže alokovať skript, napr. [kbd]32M[/kbd] ([kbd]0[/kbd] " "ruší obmedzenia)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Obmedzenie pamäte" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Zobraziť databázovú navigáciu ako strom" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Zobraziť logo v navigačnom paneli." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Zobraziť logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL, na ktoré bude odkazovať logo v navigačnom paneli." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL odkazu loga" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6363,27 +6376,27 @@ msgstr "" "Otvoriť odkazovanú stránku v hlavnom okne ([kbd]hlavné[/kbd]) alebo v novom " "([kbd]nové[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Cieľ odkazu loga" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Zobraziť voľbu servera v hornej časti navigačného panela." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Zobraziť výber serverov" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Cieľ pre ikonu rýchleho prístupu" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Cieľ pre druhú ikonu rýchleho prístupu" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6391,15 +6404,15 @@ msgstr "" "Definuje minimálny počet položiek (tabuliek, zobrazení, rutín, udalostí) pre " "zobrazenie filtra." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Minimálny počet položiek pre zobrazenie filtra" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Minimálny počet databáz pre zobrazenie filtra databáz" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6407,100 +6420,100 @@ msgstr "" "Zoskupovať položky v navigačnom paneli (určené oddeľovačom nastaveným " "nižšie)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Zoskupovať položky v strome" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Reťazec, ktorý rozdeľuje databázy do rôznych úrovní stromu." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Oddeľovač databázového stromu" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Reťazec, ktorý rozdelí tabuľky do rôznych úrovní stromu." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Oddeľovač tabuľkového stromu" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maximálna hĺbka tabuľkového stromu" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Zvýrazní server pod kurzorom myši." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Povoliť zvýrazňovanie" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Navigačná lišta tabuľky" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Maximálny počet tabuliek v zozname nedávno zobrazených tabuliek; nastavte 0 " "pre vypnutie." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "Maximálny počet tabuliek v zozname obľúbených tabuliek; nastavte 0 pre " "vypnutie." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Nedávno použité tabuľky" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Toto sú odkazy na Upraviť, Kopírovať a Odstrániť." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Kde zobraziť linky riadkov tabuľky" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Prirodzené poradie" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Použiť len ikony, len text alebo obidve." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Navigačná lišta tabuľky" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Medzipamäť pre GZip výstup" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6508,19 +6521,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Východzie radenie" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Použiť trvalé (persistent) spojenia k MySQL databázam." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Trvalé spojenia" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6530,11 +6543,11 @@ msgstr "" "vyžadovaných tabuliek pre miesto uloženia phpMyAdmin konfigurácie nebola " "nájdená." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Chýbajú tabuľky pre miesto uloženia phpMyAdmin konfigurácie" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6542,11 +6555,11 @@ msgstr "" "Vypnúť štandardné varovanie pri zistení rozdielu medzi verziou knižnice " "MySQL a servera." -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Varovanie o rozdiele medzi verziou knižnice MySQL a servera" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6554,27 +6567,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Varovanie o kľúčových slovách MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Ako zobraziť lišty menu" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Ako zobraziť rôzne príkazy" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Zakázať úpravu polí typu BLOB a BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Chrániť binárne polia" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6585,120 +6598,120 @@ msgstr "" "zobrazeniu histórie dopytoj Java Scriptové funkcie (bude stratená pri " "zavretí okna)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Trvalá história dopytov" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Koľko dopytov sa má držať v histórii." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Dĺžka histórie dopytov" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Prekódovací nástroj" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Pamätať si triedenie tabuľky" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Východzie radenie primárneho kľúča" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Opakovať záhlavie" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Úprava mriežky: vyvolať akciu" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Relačné zobrazenie" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Nastavenie zobrazenia serverov." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Adresár na serveri pre ukladanie exportov." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Adresár pre ukladanie" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Nechajte prázdne pokiaľ nepoužívate." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Poradie overovania hostiteľa" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Nechajte prázdne, ak chcete použiť východzie nastavenia." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Pravidlá overovania hostiteľa" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Povoliť prihlásenie bez hesla" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Povoliť prihlásenia užívateľa root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Časová zóna sedenia" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6708,19 +6721,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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Konfiguračný súbor SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Výber použitej prihlasovacej metódy." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Typ overovania" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6728,11 +6741,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabuľka záložiek" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6740,31 +6753,31 @@ msgstr "" "Nechajte prázdne pre žiadne komentáre či mime typy polí, navrhované: [kbd]" "pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabuľka informácii o poliach" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Komprimovať spojenie s MySQL serverom." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Komprimovať pripojenie" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Typ pripojenia" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Heslo kontrolného užívateľa" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6772,11 +6785,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Kontrolný užívateľ" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6784,11 +6797,11 @@ msgstr "" "Alternatívny hostiteľ na ukladanie konfigurácie; ponechajte prázdne, aby sa " "použil už definovaný hostiteľ." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Kontrolný hostiteľ" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6798,15 +6811,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Kontrolný port" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Skryť databázy zodpovedajúce regulárnemu výrazu (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6814,15 +6827,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Zakazať použitie INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Skryť databázy" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6830,23 +6843,23 @@ msgstr "" "Nechajte prázdne pre vypnutie histórie SQL dopytov, navrhované: [kbd]" "pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabuľka histórie SQL dopytov" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Meno počítača, kde beží MySQL server." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Meno servera" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL pri odhlásení" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6854,15 +6867,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:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Maximálny počet uložených nastavení tabuliek" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6870,11 +6883,11 @@ msgstr "" "Nechajte prázdne pre vypnutie podpory pre ukladanie vyhľadávaní, navrhované: " "[kbd]pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Tabuľka centrálnych stĺpcov" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -6882,15 +6895,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:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Pokúsiť sa pripojiť bez hesla." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Pripojiť sa bez hesla" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -6900,30 +6913,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Zobraziť len vybrané databázy" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Nechajte prázdne ak nepoužívate prihlasovací config." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Heslo pre prihlásenie podľa konfigurácie" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF schéma: tabuľka stránok" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -6933,21 +6946,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Meno databázy" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Port servera" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -6955,11 +6968,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Naposledy použitá tabuľka" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -6967,11 +6980,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Tabuľka obľúbených" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -6979,11 +6992,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relačná tabuľka" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -6991,32 +7004,32 @@ msgstr "" "Priklad, viď [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typy " "overovania[/a]." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Meno prihlasovacej session/sedenia" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL pri prihlásení" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Socket servera" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Povoliť SSL pre pripojenie k MySQL serveru." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Použiť SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7024,11 +7037,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:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Dizajnér a PDF schéma: tabuľka súradníc" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7036,11 +7049,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Zobrazenie stĺpcov tabuľky" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7048,11 +7061,11 @@ msgstr "" "Nechajte prázdne pre vypnutie podpory \"trvalého\" ukladania nastavení, " "navrhované: [kbd]pma__table_uiprefs[/kbd]." -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabuľka pre nastavenie rozhrania" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7060,11 +7073,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Pridať DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7072,11 +7085,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Pridať DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7084,21 +7097,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Pridať DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Sledované príkazy" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7106,22 +7119,22 @@ msgstr "" "Nechajte prázdne pre vypnutie podpory pre sledovanie SQL dopytov. Odporúčaná " "hodnota: [kbd]pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabuľka pre sledovanie SQL dopytov" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 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:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Automaticky vytvárať verzie" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7129,33 +7142,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabuľka pre užívateľské nastavenia" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Tabuľka používateľov" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Tabuľka užívateľských skupín" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7163,15 +7176,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Užívateľ pre prihlásenie podľa konfigurácie" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7179,20 +7192,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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Dlhé meno tohto servera" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Povoliť zobraziť všetky riadky" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7203,46 +7216,46 @@ msgstr "" "konfiguračnom súbore; toto nemá vplyv na možnosť vykonať rovnaký príkaz " "priamo." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Zobraziť formulár na zmenu hesla" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Zobraziť formulár na vytvorenie databázy" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Zobraziť viac časových značiek" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Zobraziť Časovú značku poslednej aktualizácie" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Zobraziť Časovú značku poslednej kontroly" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7250,27 +7263,27 @@ msgstr "" "Definuje, či sa majú alebo nemajú zobrazovať typové polia v móde úprav/" "vkladania." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Zobraziť typy polí" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Zobraziť zoznam funkcií v móde úprav." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Zobraziť zoznam funkcií" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Či sa má zobrazovať nápoveda alebo nie." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Zobraziť nápovedu" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7278,61 +7291,61 @@ msgstr "" "Zobraziť odkaz na výstup funkcie [a@http://php.net/manual/function.phpinfo." "php]phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Zobraziť odkaz na phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Zobraziť podrobné informácie o MySQL serveri" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Zobraziť SQL dopyty" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Zachovať príkazové okno" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Zobraziť štatistiky" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Preskočiť zamknuté tabuľky" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Vypne varovanie na hlavnej stránke ak sa používa Suhosin." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Varovanie Suhosin rozšírenia" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7341,11 +7354,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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Varovanie o platnosti prihlasovacej cookie" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7353,11 +7366,11 @@ msgstr "" "Veľkosť editačného okna (počet stĺpcov). Táto hodnota bude zväčšená pre okná " "SQL dopytov (*2) a pre dopytové okno (*1,25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Stĺpce s textovou oblasťou" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7365,31 +7378,31 @@ msgstr "" "Veľkosť editačného okna (počet riadkov). Táto hodnota bude zväčšená pre okná " "SQL dopytov (*2) a pre dopytové okno (*1,25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Riadkov v textovej oblasti" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Východzí popis" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7401,27 +7414,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Adresár pre nahrávanie" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Povoliť prehľadávať celú databázu." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Použiť databázové vyhľadávanie" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7429,26 +7442,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Povoliť záložku Pre vývojára v nastaveniach" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Skontrolovať najnovšiu verziu" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7456,30 +7469,30 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Proxy url" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Proxy užívateľské meno" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Proxy heslo" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7487,53 +7500,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Poslať chybové hlásenia" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Vykonaných dopytov" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Povoliť režim nulovej konfigurácie" @@ -7553,44 +7566,44 @@ msgstr "HTTP overovanie" msgid "Signon authentication" msgstr "Overovanie signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV pomocou LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Tabuľkový procesor Open Document" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Rýchle" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Vlastné" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Nastavenia exportu databáz" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV pre MS Excel dáta" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Open Document Text" @@ -7800,20 +7813,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Žiadne heslo" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Heslo:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Potvrdiť:" @@ -7951,8 +7964,8 @@ msgstr ", meno tabuľky bude zmenené na @TABLE@" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť " "reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto " @@ -8485,8 +8498,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8945,7 +8958,7 @@ msgstr "Odhlásiť sa" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin Dokumentácia" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Obnoviť navigačný panel" @@ -9585,8 +9598,8 @@ msgstr "Vitajte v %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho " "vytvorenie môžete použiť %1$skonfiguračný skript%2$s." @@ -9816,7 +9829,7 @@ msgstr "Pridať názvy polí na prvý riadok:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Hostiteľ:" @@ -10760,22 +10773,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Meno používateľa:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Meno používateľa" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Heslo" @@ -10803,10 +10816,10 @@ msgstr "ID servra" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Hostiteľ" @@ -10818,38 +10831,38 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Akýkoľvek hostiteľ" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokálny" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Tento počítač" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Akýkoľvek používateľ" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Použiť textové pole:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Použiť tabuľku s hostiteľmi" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -10858,7 +10871,7 @@ msgstr "" "použijú hodnoty z tabuľky Host." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Potvrdiť" @@ -11588,7 +11601,7 @@ msgstr "Žiadny" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11659,14 +11672,14 @@ msgstr "Obmedzuje počet simultánnych pripojení používateľa." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky." @@ -11675,7 +11688,7 @@ msgid "Administration" msgstr "Administrácia" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globálne práva" @@ -11684,7 +11697,7 @@ msgid "Global" msgstr "Globálny" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" @@ -11701,142 +11714,142 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Prihlasovacie informácie" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Požiť textové pole" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Nezmeniť heslo" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pre %s bolo úspešne zmenené." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Boli zrušené oprávnenia pre %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Pridať používateľa" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Databáza pre používateľa" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Prideliť všetky oprávnenia na databázu \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Používatelia majúci prístup k \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Užívateľ bol pridaný." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Používateľ" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Prideliť" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Akýkoľvek" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globálny" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "závislé na databáze" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "nahradzujúci znak" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "závislé na tabuľke" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Upraviť oprávnenia" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Zrušiť" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Upraviť užívateľské skupiny" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… zachovať pôvodného používateľa." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… zmazať pôvodného používateľa z tabuliek používateľov." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -11844,120 +11857,120 @@ msgstr "" "… zmazať pôvodného používateľa z tabuliek používateľov a potom znovunačítať " "oprávnenia." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Vytvoriť nového používateľa s rovnakými právami a …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Pridať oprávnenia pre nasledujúcu databázu(y):" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Náhradzujúcim znakom % a _ by mal predchádzať znak \\, pokiaľ ich nechcete " "použiť doslovne." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Pridať oprávnenia pre nasledujúcu tabuľku:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Odstrániť vybraných používateľov" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Na odstránenie neboli vybraní žiadni používatelia!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Znovunačítanie práv" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Vybraní používatelia bol úspešne odstránený." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Boli aktualizované oprávnenia pre %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Odstraňuje sa %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Používateľ %s už existuje!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Oprávnenia pre %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nový" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Upraviť oprávnenia:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Zoznam používatelov" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. " "Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli " -"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %" -"sznovunačítanie práv%s predtým ako budete pokračovať." +"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " +"%sznovunačítanie práv%s predtým ako budete pokračovať." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Používateľ bol pridaný." @@ -13294,8 +13307,8 @@ msgid "" "May be approximate. Click on the number to get the exact count. See " "[doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -"Môže byť nepresné. Kliknutím na číslo dostanete presný počet. Viď [doc@faq3-" -"11]FAQ 3.11[/doc]." +"Môže byť nepresné. Kliknutím na číslo dostanete presný počet. Viď " +"[doc@faq3-11]FAQ 3.11[/doc]." #: libraries/structure.lib.php:862 libraries/structure.lib.php:2346 #: libraries/tbl_printview.lib.php:324 @@ -13726,21 +13739,21 @@ msgstr "Výber indexu:" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Typ indexu :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Užívateľ:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Komentár:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Usporiadajte pretiahnutím" @@ -14069,8 +14082,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %" -"sNastavovacieho skriptu%s." +"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím " +"%sNastavovacieho skriptu%s." #: prefs_manage.php:321 msgid "Save to browser's storage" @@ -14699,8 +14712,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14818,8 +14831,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -15849,8 +15862,8 @@ msgstr "concurrent_insert je nastavené na 0" #~ "%s." #~ msgstr "" #~ "SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú " -#~ "nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" -#~ "sdocumentation%s." +#~ "nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " +#~ "%sdocumentation%s." #, fuzzy #~| msgid "Copy" @@ -16680,8 +16693,8 @@ msgstr "concurrent_insert je nastavené na 0" #~ msgid "Imported file compression will be automatically detected from: %s" #~ msgstr "" -#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %" -#~ "s" +#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: " +#~ "%s" #~ msgid "Add into comments" #~ msgstr "Pridať do komentárov" diff --git a/po/sl.po b/po/sl.po index 8db4cf9333..97c6f4fe93 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-18 23:24+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.3-dev\n" #: changelog.php:36 license.php:28 @@ -68,7 +68,7 @@ msgstr "Pripombe tabele:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "Stolpec" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "Povezave z" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "Primarni" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "Ne" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -262,14 +262,14 @@ msgid "" msgstr "Hrambo konfiguracije phpMyAdmin smo onemogočili. %sUgotovite, zakaj%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabela" @@ -282,7 +282,7 @@ msgid "Rows" msgstr "Vrstic" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Velikost" @@ -373,9 +373,9 @@ msgstr "Stanje" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -571,15 +571,15 @@ msgstr "Dodaj geometrijo" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -612,11 +612,11 @@ msgstr "Nepopolni parametri" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, da si v %" -"sdokumentaciji%s ogledate načine, kako obiti omejitev." +"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, da si v " +"%sdokumentaciji%s ogledate načine, kako obiti omejitev." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -702,7 +702,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Nazaj" @@ -726,7 +726,7 @@ msgid "General Settings" msgstr "Splošne nastavitve" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Spremeni geslo" @@ -799,7 +799,7 @@ msgstr "Podatki o različici:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentacija" @@ -1051,7 +1051,7 @@ msgstr "Dodaj indeks" msgid "Edit Index" msgstr "Uredi indeks" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Dodaj %s stolpec(-cev) k indeksu" @@ -1078,7 +1078,7 @@ msgstr "Dodati morate vsaj en stolpec." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Predogled SQL" @@ -1107,12 +1107,12 @@ msgstr "Ime gostitelja je prazno!" msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" @@ -1313,7 +1313,7 @@ msgstr "Prosimo, da v serijo dodate vsaj eno spremenljivko!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1605,7 +1605,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1816,7 +1816,7 @@ msgstr "Prikaži polje poizvedbe" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2065,7 +2065,7 @@ msgstr "Vsebina kazalca podatkov" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Prezri" @@ -2243,7 +2243,7 @@ msgstr "Za preklop vidnosti stolpcev
kliknite spustno puščico." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Pokaži vse" @@ -2344,7 +2344,7 @@ msgstr "Skrij ploščo" msgid "Show hidden navigation tree items." msgstr "Prikaži skrite predmete v navigacijskem drevesu." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Poveži z glavno ploščo" @@ -2790,8 +2790,8 @@ msgstr "Nepričakovani znaki v vrstici %s." #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -"Nepričakovan znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel »%2" -"$s«." +"Nepričakovan znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel " +"»%2$s«." #: libraries/Advisor.class.php:475 msgid "per second" @@ -2849,16 +2849,16 @@ msgid "Delete" msgstr "Izbriši" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2975,7 +2975,7 @@ msgid "During current session" msgstr "Med trenutno sejo" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3359,8 +3359,8 @@ msgstr "Poizvedbo SQL sem uspešno izvedel." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." #: libraries/DisplayResults.class.php:4560 @@ -3395,6 +3395,7 @@ msgstr "Z označenim:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3410,12 +3411,12 @@ msgstr "Spremeni" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3607,7 +3608,7 @@ msgstr "" "odstrani." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Strežnik" @@ -3622,11 +3623,11 @@ msgstr "Pogled" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3642,7 +3643,7 @@ msgstr "Struktura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3668,9 +3669,9 @@ msgstr "Vstavi" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegiji" @@ -3730,9 +3731,9 @@ msgid "Central columns" msgstr "Osrednji stolpci" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Zbirke podatkov" @@ -3846,7 +3847,7 @@ msgid "Recent" msgstr "Nedavno" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Priljubljene tabele" @@ -3917,7 +3918,7 @@ msgstr "Razvrščanje" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4282,20 +4283,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Majhno število z decimalno vejico; dovoljene so vrednosti od -3,402823466E" "+38 do -1,175494351E-38, 0 in od 1,175494351E-38 do 3,402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od -" -"1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od " +"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od " +"-1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od " "2,2250738585072014E-308 do 1,7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4586,7 +4587,7 @@ msgstr "Največja velikost: %s %s" msgid "MySQL said: " msgstr "MySQL je vrnil: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Razloži stavek SQL" @@ -4598,7 +4599,7 @@ msgstr "Preskoči razlago stavka SQL" msgid "Without PHP Code" msgstr "Brez kode PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Ustvari kodo PHP" @@ -4709,13 +4710,13 @@ msgstr "Opis" msgid "Use this value" msgstr "Uporabi to vrednost" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5117,7 +5118,7 @@ msgid "Set value: %s" msgstr "Določi vrednost: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Povrni privzeto vrednost" @@ -5209,8 +5210,8 @@ msgid "" "random session invalidation (currently session.gc_maxlifetime is %d)." msgstr "" "%sVeljavnost prijavnega piškotka%s večja od %ssession.gc_maxlifetime%s lahko " -"povzroči naključno razvrednotenje seje (session.gc_maxlifetime je trenutno %" -"d)." +"povzroči naključno razvrednotenje seje (session.gc_maxlifetime je trenutno " +"%d)." #: libraries/config/ServerConfigChecks.class.php:413 #, php-format @@ -5538,23 +5539,35 @@ msgstr "Zavihek, ki se prikaže ob odprtju tabele." msgid "Default table tab" msgstr "Privzet zavihek tabele" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Obdaj imena tabel in stolpcev z enojnimi poševnimi narekovaji" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Obdaj imena tabel in stolpcev z enojnimi poševnimi narekovaji" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Ali naj bodo dejanja strukture tabele skrita." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Skrij dejanja strukture tabele" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Prikaži naštete strežnike kot seznam namesto spustnega menija." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Prikaži strežnike kot seznam" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5562,11 +5575,11 @@ msgstr "" "Onemogoči množične operacije vzdrževanja tabel, kot je optimiranje ali " "popravljanje izbranih tabel zbirke podatkov." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Onemogoči množično vzdrževanje tabel" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5574,39 +5587,38 @@ msgstr "" "Nastavi število sekund, ko se skript lahko izvaja ([kbd]0[/kbd] za " "neomejeno)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Najdaljši čas izvajanja" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format -#| msgid "Add %s statement" msgid "Use %s statement" msgstr "Uporabi izjavo %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Shrani kot datoteko" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Nabor znakov datoteke" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Oblika" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Stiskanje" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5616,60 +5628,60 @@ msgstr "Stiskanje" msgid "Put columns names in the first row" msgstr "Postavi imena stolpcev v prvo vrstico" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Stolpci so obdani z" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Stolpci so izognjeni z" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Zamenjaj NULL z" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Odstrani znake CRLF znotraj stolpcev" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Stolpci so zaključeni z" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Vrstice so zaključene z" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Izdaja za Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Predloga imena zbirke podatkov" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Predloga imena strežnika" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Predloga imena tabele" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5678,137 +5690,137 @@ msgstr "Predloga imena tabele" msgid "Dump table" msgstr "Odloži tabelo" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Vključi ime tabele" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Ime tabele" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Nadaljevanje imena tabele" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Označi ključ" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Vrsta MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Način izvoza" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Shrani na strežnik" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Prepiši obstoječo(e) datoteko(e)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Zapomni si predlogo imena datoteke" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Obdaj imena tabel in stolpcev z enojnimi poševnimi narekovaji" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Združljivostni način SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "Možnosti CREATE TABLE:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Datumi za ustvarjeno/posodobljeno/preverjeno" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Uporabi zakasnjeno vstavljanje" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Onemogoči preverjanja tujih ključev" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Izvozi poglede kot tabele" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Uporabi šestnajstiško za BINARY in BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Uporabi možnost prezri vstavke" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Skladnja ob vstavljanju podatkov" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Največja dolžina ustvarjene poizvedbe" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Vključi izvoz v transakcijo" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Izvozi čas v UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Vsili varno povezavo med uporabo phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Vsili povezavo SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5816,142 +5828,142 @@ msgstr "" "Vrstni red za predmete na spustnem seznamu tujih ključev; [kbd]content[/kbd] " "je sklicevan podatek, [kbd]id[/kbd] je vrednost ključa." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Vrstni red spustnega seznama tujih ključev" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Uporabljen bo spustni seznam, če je prisotnih manj elementov." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Omejitev tujih ključev" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Način brskanja" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Prilagodite način brskanja." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Prilagodite privzete možnosti." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Razvijalec" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Nastavitve za razvijalce phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Način urejanja" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Prilagodite način urejanja." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Privzete možnosti izvoza" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Prilagodite privzete možnosti izvoza." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Lastnosti" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Splošno" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Nastavi nekatere pogosto uporabljane možnosti." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Privzete možnosti uvoza" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Prilagodite pogoste privzete možnosti uvoza." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Uvoz / izvoz" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Nastavi mape za uvoz in izvoz ter možnosti stiskanja." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Možnosti prikaza zbirk podatkov." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigacijska plošča" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Prilagodite prikaz navigacijske plošče." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Strežniki" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Možnosti prikaza strežnikov." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Možnosti prikaza tabel." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Glavna plošča" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Druge nastavitve" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Nastavitve, ki se ne uvrščajo nikamor drugam." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Naslovi strani" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5960,19 +5972,19 @@ msgstr "" "[doc@cfg_TitleTable]dokumentacijo[/doc] za čarobne nize, ki jih lahko " "uporabite za pridobitev posebnih vrednosti." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Okno za poizvedbe" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Prilagodite možnosti okna poizvedb" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Varnost" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -5980,23 +5992,23 @@ msgstr "" "Pomnite, da je phpMyAdmin samo uporabniški vmesnik in njegove lastnosti ne " "omejujejo MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Osnovne nastavitve" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Overovitev" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Nastavitve overovitve." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Konfiguracija strežnika" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6004,15 +6016,15 @@ msgstr "" "Napredne nastavitve strežnika; ne spreminjajte teh možnosti, če ne veste " "čemu služijo." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Vnesite parametre povezave s strežnikom." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Hramba konfiguracije" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6022,11 +6034,11 @@ msgstr "" "funkcij, glej [doc@linked-tables]hrambo konfiguracije phpMyAdmin[/doc] v " "dokumentaciji." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Sledenje spremembam" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6034,109 +6046,109 @@ msgstr "" "Sledenje spremembam narejenih v zbirki podatkov. Potrebuje hrambo " "konfiguracije phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Prilagodi možnosti izvoza" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Prilagodi privzete možnosti uvoza" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Prilagodi navigacijsko ploščo" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Prilagodi glavno ploščo" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Poizvedbe SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Polje poizvedbe SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Prilagodi povezave prikazane v poljih poizvedbe SQL." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Nastavitve poizvedb SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Zagon" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Prilagodi začetno stran." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Zgradba zbirke podatkov" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Izberite podrobnosti, ki jih želite prikazati v zgradbi zbirke podatkov " "(seznam tabel)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Zgradba tabele" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Nastavitve zgradbe tabele (seznam stolpcev)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Zavihki" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Določite, kako želite, da delujejo zavihki." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Prikaži relacijsko shemo" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Velikost papirja" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Besedilna polja" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Prilagodi polja za vnos besedila." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Besedilo Texy!" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Prilagodite privzete možnosti" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Opozorila" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Onemogoči nekatera opozorila, ki jih prikazuje phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6144,15 +6156,15 @@ msgstr "" "Omogoči stiskanje [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] za posege " "uvoza in izvoza." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Dodatni parametri za iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6160,11 +6172,11 @@ msgstr "" "Če je omogočeno, phpMyAdmin nadaljuje z izvajanjem poizvedb z več izjavami, " "četudi ena od poizvedb spodleti." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Prezri napake več stavkov" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6174,27 +6186,26 @@ msgstr "" "omejitve. To je morda dober način za uvoz velikih datotek, čeprav lahko " "prekine transakcije." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Delni uvoz: dovoli prekinitev" -#: libraries/config/messages.inc.php:336 -#| msgid "Disable foreign key checks" +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "Začasno onemogoči preverjanja tujih ključev med uvozom" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Ne prekini ob napaki INSERT" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Podatke v tabeli zamenjaj z datoteko" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6202,69 +6213,69 @@ msgstr "" "Privzeta oblika; pomnite, da je seznam odvisen od položaja (zbirka podatkov, " "tabela) in vedno je na voljo samo SQL." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Oblika uvožene datoteke" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Uporabi ključno besedo LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Imena stolpcev v prvi vrstici" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Ne uvozi praznih vrstic" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Uvozi denarne enote ($5.00 v 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Uvozi odstotke kot ustrezne decimalne vrednosti (12.00% v .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Število poizvedb, ki jih naj preskočim od začetka." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Delni uvoz: preskoči poizvedbe" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne uporabi AUTO_INCREMENT za ničelne vrednosti" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Začetno stanje drsnikov" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Koliko vrstic je lahko vstavljenih naenkrat." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Število vstavljenih vrstic" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Največje število znakov prikazanih v katerem koli neštevilčnem stolpcu v " "načinu brskanja." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Omejitev znakov stolpca" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6275,11 +6286,11 @@ msgstr "" "hitro povzroči pozabljanje odjavljanja iz ostalih strežnikov, ko ste " "povezani na več strežnikov." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Izbriši vse piškotke ob odjavi" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6287,11 +6298,11 @@ msgstr "" "Določi, ali se naj prejšnji prijavni podatki v načinu overovitve [kbd]cookie" "[/kbd] prikličejo ali ne." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Prikliči uporabniško ime" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6303,48 +6314,48 @@ msgstr "" "sejo in bo izbrisan takoj, ko zaprete okno brskalnika. To je priporočeno za " "okolja, ki jim ne zaupate." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Shranjevanje prijavnih piškotkov" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Določa, kako dolgo (v sekundah) je prijavni piškotek veljaven." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Veljavnost prijavnega piškotka" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Dvojna velikost besedilnega polja za stolpce LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Večje besedilno polje za LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Največje število znakov pri prikazu poizvedbe SQL." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Največja dolžina prikazanega SQL" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Uporabniki ne morejo določiti višje vrednosti" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Največje število zbirk podatkov, prikazanih na seznamu zbirk podatkov." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Največ zbirk podatkov" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6352,11 +6363,11 @@ msgstr "" "Število predmetov, ki se lahko prikažejo na posamezni strani na prvi stopnji " "navigacijskega drevesa." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Največ predmetov na prvi stopnji" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6364,11 +6375,11 @@ msgstr "" "Število predmetov, ki se lahko prikažejo na posamezni strani navigacijskega " "drevesa." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Največ predmetov v veji" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6377,19 +6388,19 @@ msgstr "" "rezultatov vsebuje več vrstic, se prikažeta povezavi »Prejšnja« " "in »Naslednja«." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Največje število vrstic za prikaz" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Največje število tabel, prikazanih na seznamu tabel." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Največ tabel" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6397,40 +6408,40 @@ msgstr "" "Število bajtov, ki jih skript lahko dodeli, npr. [kbd]32M[/kbd] ([kbd]0[/" "kbd] za neomejeno)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Omejitev spomina" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "Na navigacijski plošči zamenja drevo zbirke podatkov z izbirnikom" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Prikaži navigacijo po zbirkah podatkov kot drevo" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Poveži z glavno ploščo tako, da označiš trenutno zbirko podatkov ali tabelo." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Prikaži logotip na navigacijski plošči." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Prikaži logotip" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL, kamor bo kazal logotip na navigacijski plošči." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL-povezava logotipa" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6438,27 +6449,27 @@ msgstr "" "Odpre povezano stran v glavnem ([kbd]main[/kbd]) ali v novem oknu ([kbd]new[/" "kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Cilj povezave logotipa" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Prikaži izbrani strežnik na vrhu navigacijske plošče." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Prikaži izbiro strežnikov" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Cilj ikone za hitri dostop" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "Cilj druge ikone za hitri dostop" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6466,17 +6477,17 @@ msgstr "" "Najmanjše število predmetov (tabel, pogledov, rutin in dogodkov), potrebnih " "za prikaz filtrirnega polja." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Najmanjše število predmetov, potrebnih za prikaz filtrirnega polja" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" "Najmanjše število zbirk podatkov, potrebnih za prikaz polja za filtriranje " "zbirk podatkov" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6484,95 +6495,95 @@ msgstr "" "Združi predmete v navigacijskem drevesu (določeno z ločilom, navedenim " "spodaj)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Združi predmete v drevesu" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Niz, ki loči zbirke podatkov v drugi nivo drevesa." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Ločilo drevesa zbirke podatkov" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Niz, ki loči tabele v različne stopnje drevesa." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Ločilo drevesa tabel" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Največja globina drevesa tabel" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Poudari strežnik pod miškinim kazalcem." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Omogoči poudarjanje" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Ali naj bo ponujena možnost razširitve drevesa na navigacijski plošči." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Omogoči razširitev navigacijskega drevesa" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Največje število nedavno uporabljenih tabel; določite 0 za onemogočitev." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Največje število priljubljenih tabel; določite 0 za onemogočitev." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Nedavno uporabljene tabele" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "To so povezave Uredi, Kopiraj in Izbriši." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Kje naj prikažem povezave vrstic tabel" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Naravni vrstni red" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Uporabi samo ikone, samo besedilo ali oboje." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Navigacijska vrstica tabele" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "Izhod medpomnjenja GZip" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6580,19 +6591,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Privzet vrstni red" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Uporabi vztrajne povezave s podatkovnimi zbirkami MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Vztrajne povezave" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6602,11 +6613,11 @@ msgstr "" "podatkov Struktura, če katera od tabel, potrebnih za hrambo konfiguracije " "phpMyAdmin, ni bila najdena." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Manjkajoče tabele hrambe konfiguracije phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6614,11 +6625,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Opozorilo razlike med strežnikom in knjižnico" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6626,27 +6637,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Opozorilo rezerviranih besed MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Kako prikazati zavihke menija" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Kako prikazati različne povezave dejanj" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Prepreči urejanje stolpcev BLOB in BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Zaščiti dvojiške stolpce" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6656,104 +6667,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Trajna zgodovina poizvedb" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Koliko poizvedb je hranjenih v zgodovini." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Dolžina zgodovine poizvedb" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Snemalni pogon" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Ohrani razvrščanje tabel" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Privzeto razvrščanje primarnega ključa" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Ponovi glave" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Urejanje mreže: sproži dejanje" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Relacijski prikaz" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Za prikaz Možnosti" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Urejanje mreže: naenkrat shrani vse urejene celice" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Mapa, kamor se lahko na strežnik shranijo izvozi." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Mapa za shranjevanje" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Pustite prazno, če se ne uporablja." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Zaporedje overovitve gostitelja" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Pustite prazno za privzeto." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Pravila overovitve gostitelja" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Dovoli prijave brez gesla" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Dovoli prijavo root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Časovni pas seje" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" @@ -6761,15 +6772,15 @@ msgstr "" "Določi časovni pas v uporabi; lahko se razlikuje od časovnega pasu na " "strežniku zbirke podatkov" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Področje HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6779,19 +6790,19 @@ msgstr "" "SweKey[/a] (se ne nahaja v korenski mapi dokumentov; predlagano: /etc/swekey." "conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "Konfiguracijska datoteka SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Način overovitve za uporabo." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Vrsta overovitve" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6799,11 +6810,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabela zaznamkov" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6811,32 +6822,32 @@ msgstr "" "Pustite prazno, če ne želite pripomb/vrst MIME stolpcev; predlagano: [kbd]" "pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabela informacij stolpcev" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Stisni povezavo s strežnikom MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Stisni povezavo" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Vrsta povezave" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Geslo krmilnega uporabnika" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6844,11 +6855,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Krmilni uporabnik" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6856,11 +6867,11 @@ msgstr "" "Nadomestni gostitelj, ki ima shrambo konfiguracije; pustite prazno, če " "želite uporabiti že opredeljen gostitelj." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Krmilni gostitelj" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6870,15 +6881,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Krmilna vrata" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Skrije zbirke podatkov, ki se ujemajo z običajnim izrazom (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6886,15 +6897,15 @@ msgstr "" "Več informacij na [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" "sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Onemogoči uporabo INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Skrij zbirke podatkov" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6902,23 +6913,23 @@ msgstr "" "Pustite prazno, če ne želite podpore zgodovine poizvedb SQL; predlagano: " "[kbd]pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabela zgodovine poizvedb SQL" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Ime gostitelja, kjer teče strežnik MySQL." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Ime gostitelja strežnika" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Odjavni URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6926,15 +6937,15 @@ msgstr "" "Omeji število nastavitev tabel, ki so shranjene v zbirki podatkov; " "najstarejši zapisi bodo samodejno odstranjeni." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Največje število shranjenih nastavitev tabel" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "Tabela shranjenih iskanj QBE" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6942,11 +6953,11 @@ msgstr "" "Pustite prazno, če ne želite podpore shranjenih iskanj QBE; predlagano: [kbd]" "pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Tabela osrednjih stolpcev" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -6954,15 +6965,15 @@ msgstr "" "Pustite prazno, če ne želite podpore osrednjih stolpcev; predlagano: [kbd]" "pma__central_columns[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Poskusi se povezati brez gesla." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Poveži se brez gesla" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -6972,30 +6983,30 @@ msgstr "" "uporabiti dobesedno, npr. uporabite [kbd]'my\\_db'[/kbd] in ne [kbd]'my_db'[/" "kbd]." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Prikaži samo navedene zbirke podatkov" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Pustite prazno, če ne uporabljate overovitve config." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Geslo za overovitev config" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF-shema: tabele strani" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7005,22 +7016,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Ime zbirke podatkov" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Vrata strežnika" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7028,11 +7039,11 @@ msgstr "" "Pustite prazno, če ne želite »vztrajnih« nedavno uporabljenih tabel skozi " "seje; predlagano: [kbd]pma__recent[/kbd]." -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Nedavno uporabljena tabela" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7040,11 +7051,11 @@ msgstr "" "Pustite prazno, če ne želite »vztrajnih« priljubljenih tabel skozi seje; " "predlagano: [kbd]pma__favorite[/kbd]." -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Tabela priljubljenih" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7052,11 +7063,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relacijska tabela" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7064,32 +7075,32 @@ msgstr "" "Oglejte si [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]vrste " "overovitev[/a] za primer." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Ime seje signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL signon" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Vtičnica strežnika" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Omogoči SSL za povezavo s strežnikom MySQL." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Uporabi SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7097,11 +7108,11 @@ msgstr "" "Pustite prazno, če ne želite podpore sheme PDF; predlagano: [kbd]" "pma__table_coords[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Shema PDF in Designer: koordinate tabel" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7109,11 +7120,11 @@ msgstr "" "Tabela za opisovanje prikaznih stolpcev; pustite prazno, če ne želite " "podpore; predlagano: [kbd]pma__table_info[/kbd]." -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Tabela prikaznih stolpcev" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7121,11 +7132,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabela nastavitev uporabniškega vmesnika" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7133,11 +7144,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Dodaj DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7145,11 +7156,11 @@ msgstr "" "Ali naj se stavek DROP TABLE IF EXISTS doda kot prva vrstica v dnevnik pri " "ustvarjanju tabele." -#: libraries/config/messages.inc.php:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Dodaj DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7157,21 +7168,21 @@ msgstr "" "Ali naj se stavek DROP VIEW IF EXISTS doda kot prva vrstica v dnevnik pri " "ustvarjanju pogleda." -#: libraries/config/messages.inc.php:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Dodaj DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Izjave za sledenje" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7179,22 +7190,22 @@ msgstr "" "Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: [kbd]" "pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Tabela sledenja poizvedb SQL" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 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:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Samodejno ustvari različice" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7202,11 +7213,11 @@ msgstr "" "Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki " "podatkov; predlagano: [kbd]pma__userconfig[/kbd]." -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabela za hranjenje uporabnikovih nastavitev" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7216,11 +7227,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Tabela uporabnikov" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7230,11 +7241,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Tabela uporabniških skupin" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7242,15 +7253,15 @@ msgstr "" "Pustite prazno, če ne želite zmožnosti skrivanja in prikazovanja " "navigacijskih predmetov; predlagano: [kbd]pma__navigationhiding[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Skriti predmeti navigacijskega drevesa" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Uporabnik za overovitev config" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7258,19 +7269,19 @@ msgstr "" "Uporabniku prijazen opis tega strežnika. Pustite prazno, če se naj namesto " "tega prikaže ime gostitelja." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Razširjeno ime tega strežnika" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Dovoli prikaz vseh vrstic" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7280,73 +7291,73 @@ msgstr "" "kbd], saj je geslo vgrajeno v konfiguracijsko datoteko; to ne omejuje " "možnosti izvedbe enakega ukaza neposredno." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Pokaži obrazec za spremembo gesla" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Pokaži obrazec za ustvarjanje zbirke podatkov" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" "Prikaži ali skrij stolpec, ki prikazuje Časovni žig nastanka za vse tabele." -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Prikaži Časovni žig nastanka" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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 za vse " "tabele." -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Časovni žig zadnje spremembe" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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 za " "vse tabele." -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Časovni žig zadnjega preverjanja" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Pokaži vrste polj" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Prikaže polja funkcij v načinu urejanja/vstavljanja." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Prikaži polja funkcij" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Naj prikažem namig ali ne." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Prikaži namig" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7354,62 +7365,62 @@ msgstr "" "Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Prikaži povezavo phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Prikaži podrobne informacije o strežniku MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Pokaži poizvedbe SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Ohrani polje poizvedbe" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Pokaži statistiko" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Preskoči zaklenjene tabele" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Na glavni strani se prikaže opozorilo, če je zaznan Suhosin." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Opozorilo Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7419,11 +7430,11 @@ msgstr "" "nastavitve PHP session.gc_maxlifetime manjša kot vrednost " "`LoginCookieValidity`." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Opozorilo o veljavnost prijavnega piškotka" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7431,11 +7442,11 @@ msgstr "" "Velikost besedilnega polja (stolpci) v načinu urejanja; vrednost bo povečana " "za polja poizvedb SQL (*2) in za okno poizvedbe (*1,25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Stolpcev besedilnega polja" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7443,31 +7454,31 @@ msgstr "" "Velikost besedilnega polja (vrstice) v načinu urejanja; vrednost bo povečana " "za polja poizvedb SQL (*2) in za okno poizvedbe (*1,25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Vrstic besedilnega polja" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "Naslov okna brskalnika, ko je izbrana zbirka podatkov." -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Naslov okna brskalnika, ko je ni izbrano nič." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Privzeti naslov" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "Naslov okna brskalnika, ko je izbran strežnik." -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "Naslov okna brskalnika, ko je izbrana tabela." -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7478,27 +7489,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Seznam zaupanja vrednih proxyjev za sprejetje/zavrnitev IP" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Mapa za nalaganje" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Dovoli iskanje po celotni zbirki podatkov." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Uporabi iskanje po zbirki podatkov" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7506,26 +7517,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Omogoči zavihek Razvijalec v nastavitvah" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Preveri za najnovejšo različico" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7537,11 +7548,11 @@ msgstr "" "nameščen phpMyAdmin, nima neposredne povezave z medmrežjem. Oblika je: " "»imegostitelja:številkavrat«." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "URL proxyja" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7551,19 +7562,19 @@ msgstr "" "navedete uporabniško ime, se bo izvedla overitev Basic Authentication. Druge " "vrste overitve trenutno niso podprte." -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Uporabniško ime proxyja" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Geslo za overitev s proxyjem." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Geslo proxyja" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7571,35 +7582,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Javni ključ za reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Zasebni ključ za reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Pošlji poročila o napakah" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." @@ -7607,11 +7618,11 @@ msgstr "" "Poizvedbe izvede pritisk na Enter (namesto Ctrl+Enter). Nove vrstice lahko " "vstavite s Shift+Enter." -#: libraries/config/messages.inc.php:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "Enter izvede poizvedbe v konzoli" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7619,7 +7630,7 @@ msgstr "" "Omogoči način ničelne konfiguracije, ki omogoča, da phpMyAdmin samodejno " "nastavi hrambene tabele konfiguracije." -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Omogoči način ničelne konfiguracije" @@ -7639,44 +7650,44 @@ msgstr "Overitev s HTTP" msgid "Signon authentication" msgstr "Overitev s signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV z uporabo LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Preglednica OpenDocument" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Hitro" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Po meri" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Možnosti izvoza zbirke podatkov" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Besedilo OpenDocument" @@ -7756,7 +7767,6 @@ msgid "New page" msgstr "Nova stran" #: libraries/db_designer.lib.php:297 libraries/db_designer.lib.php:300 -#| msgid "Save page" msgid "Save page as" msgstr "Shrani stran kot" @@ -7883,20 +7893,20 @@ msgstr "Ne morem prešteti vrstic v nemedpomnjeni množici rezultatov" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Brez gesla" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Geslo:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Ponovno vnesi:" @@ -8034,8 +8044,8 @@ msgstr ", @TABLE@ bo postalo ime tabele" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate " "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " @@ -8204,12 +8214,10 @@ msgstr "" "s prvo:" #: libraries/display_import.lib.php:332 -#| msgid "Options" msgid "Other Options:" msgstr "Druge možnosti:" #: libraries/display_import.lib.php:338 -#| msgid "Disable foreign key checks" msgid "Disable foreign key check" msgstr "Onemogoči preverjanje tujih ključev" @@ -8591,8 +8599,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." @@ -9061,7 +9069,7 @@ msgstr "Odjava" msgid "phpMyAdmin documentation" msgstr "Dokumentacija phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Osveži navigacijsko ploščo" @@ -9744,8 +9752,8 @@ msgstr "Dobrodošli v %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite " "uporabiti %1$snastavitveni skript%2$s, da jo ustvarite." @@ -9975,7 +9983,7 @@ msgstr "Postavi imena stolpcev v prvo vrstico:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Gostitelj:" @@ -10981,22 +10989,22 @@ msgstr "" "[mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Uporabniško ime:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Uporabniško ime" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Geslo" @@ -11024,10 +11032,10 @@ msgstr "ID strežnika" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Gostitelj" @@ -11041,38 +11049,38 @@ msgstr "" "vidni na tem seznamu." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Kateri koli gostitelj" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokalno" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Ta strežnik" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Kateri koli uporabnik" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Uporabi besedilno polje:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Uporabi tabelo gostiteljev" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11081,7 +11089,7 @@ msgstr "" "uporabljene vrednosti shranjene v tabeli Host." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Ponovno vnesi" @@ -11819,7 +11827,7 @@ msgstr "Brez" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Uporabniška skupina" @@ -11890,14 +11898,14 @@ msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Opomba: Imena privilegijev MySQL so zapisana v angleščini." @@ -11906,7 +11914,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globalni privilegiji" @@ -11915,7 +11923,7 @@ msgid "Global" msgstr "Globalno" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilegiji tipični za podatkovno zbirko" @@ -11933,18 +11941,18 @@ msgid "" msgstr "" "Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Podatki o prijavi" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Uporabi besedilno polje" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -11952,125 +11960,125 @@ msgstr "" "Račun z enakim uporabniškim imenom že obstaja, vendar ima morda drugačnega " "gostitelja." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Ne spreminjaj gesla" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Geslo za %s je uspešno spremenjeno." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Odvzeli ste privilegije za %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Dodaj uporabnika" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Zbirka podatkov za uporabnika" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Dodeli vse privilegije za podatkovno zbirko \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Uporabniški dostop do \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Uporabnik je dodan." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Uporabnik" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Dovoli" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Nimate zadostnih privilegijev za ogled uporabnikov." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Najden ni bil noben uporabnik." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Kateri koli" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "nadomestni znak" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "glede na tabelo" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Odvzemi" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Uredi uporabniško skupino" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… obdrži starega." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… izbriši starega s seznama uporabnikov." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… prekliči vse aktivne pravice starega uporabnika ter jih izbriši." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12078,92 +12086,92 @@ msgstr "" "… izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Spremeni prijavne informacije / Kopiraj uporabnika" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Ustvari novega uporabnika z enakimi pravicami in …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilegiji tipični za stolpec" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Dodaj privilegije na naslednje zbirke podatkov:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Pred nadomestna znaka % in _ je potrebno postaviti \\, če ju želite " "uporabiti dobesedno." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Dodaj privilegije na naslednji tabeli:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Izbriši izbrane uporabnike" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Ni izbranih uporabnikov za brisanje!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Osvežujem privilegije" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Uspešno sem izbrisal izbrane uporabnike." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Posodobili ste privilegije za %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Uporabnik %s že obstaja!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Privilegiji %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Nov" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Uredi privilegije:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12171,28 +12179,28 @@ msgstr "" "Opozorilo: Poskušate urediti privilegije uporabnika, s katerim ste trenutno " "prijavljeni." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Pregled uporabnikov" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel " "privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki " "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." @@ -13968,19 +13976,19 @@ msgstr "Izbira indeksa:" msgid "Key block size:" msgstr "Velikost bloka ključa:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Vrsta indeksa:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Razčlenjevalnik:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Pripomba:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Povlecite za preureditev" @@ -15008,8 +15016,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Trenutni delež prostega pomnilnika predpomnilnika poizvedb je v primerjavi s " "skupnim pomnilnikom predpomnilnima poizvedb %s %%. Moral bi biti nad 80 %%" @@ -15164,8 +15172,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s %% vseh razvrščanj povzroča začasne tabele; vrednost bi morala biti nižja " "od 10 %%." @@ -16433,8 +16441,8 @@ msgstr "concurrent_insert je nastavljeno na 0" #~ "For a list of available transformation options and their MIME type " #~ "transformations, click on %stransformation descriptions%s" #~ msgstr "" -#~ "Za seznam razpoložljivih možnosti pretvorbe in vrst MIME kliknite na %" -#~ "sopise transformacij%s" +#~ "Za seznam razpoložljivih možnosti pretvorbe in vrst MIME kliknite na " +#~ "%sopise transformacij%s" #~ msgid "" #~ "Uncheck this to prevent the sending of error reports for javascript errors" diff --git a/po/sq.po b/po/sq.po index 247c212ce2..5b275e5bdc 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-01-07 01:02+0200\n" "Last-Translator: Arben Çokaj \n" "Language-Team: Albanian \n" +"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2-dev\n" @@ -68,7 +68,7 @@ msgstr "Komentet e tabelës:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "Kolona" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "Lidhje tek" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "Primar" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "Jo" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -263,14 +263,14 @@ msgstr "" "Ruajtja e konfigurimit phpMyAdmin është pasivizuar. %sGjej arsyen pse%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabela" @@ -283,7 +283,7 @@ msgid "Rows" msgstr "Radhët" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Madhësia" @@ -373,9 +373,9 @@ msgstr "Statusi" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -574,15 +574,15 @@ msgstr "Shto gjeometri" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -615,8 +615,8 @@ msgstr "Parametra jo të plota" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Ndoshta provuat të ngarkoni një fil, që është shumë i madh. Ju lutem, refero " "%sdokumentacionin%s për një vështrim të kujdesshëm për këtë kufizim." @@ -705,7 +705,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Prapa" @@ -729,7 +729,7 @@ msgid "General Settings" msgstr "Konfigurimet e përgjithshme" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Ndrysho fjalëkalimin" @@ -804,7 +804,7 @@ msgstr "Informacion mbi versionin:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentacioni" @@ -937,8 +937,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Versioni i librarisë së PHP MySQL %s ndryshon nga versioni i MySQL server %" -"s. Kjo mund të shkaktojë sjellje të paparashikuara." +"Versioni i librarisë së PHP MySQL %s ndryshon nga versioni i MySQL server " +"%s. Kjo mund të shkaktojë sjellje të paparashikuara." #: index.php:621 #, php-format @@ -1084,7 +1084,7 @@ msgstr "Shto Indeks" msgid "Edit Index" msgstr "Korrigjo indeks" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Shto %s kolonë(a) tek indeksi" @@ -1111,7 +1111,7 @@ msgstr "Keni shtuar së paku një kolonë." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Paraqit SQL" @@ -1140,12 +1140,12 @@ msgstr "Emri host (pritësit) është i zbrazët!" msgid "The user name is empty!" msgstr "Emri i përdoruesit është i zbrazët!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Fjalëkalimi është i zbrazët!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Fjalëkalimet nuk janë të njëjtë!" @@ -1346,7 +1346,7 @@ msgstr "Ju lutem, shtoni së paku një variabël në seri!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1645,7 +1645,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1859,7 +1859,7 @@ msgstr "Shfaq kutinë e pyetsorit" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2114,7 +2114,7 @@ msgstr "Përmbajtja e pikës së të dhënave" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Injoro" @@ -2292,7 +2292,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Shfaq të gjitha" @@ -2396,7 +2396,7 @@ msgstr "Fsheh panelin" msgid "Show hidden navigation tree items." msgstr "Shfaq njësitë e fshehta të pemës së navigimit." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Lidh me panelin kryesor" @@ -2905,16 +2905,16 @@ msgid "Delete" msgstr "Fshij" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3031,7 +3031,7 @@ msgid "During current session" msgstr "Gjatë sesionit aktual" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3409,11 +3409,11 @@ msgstr "Pyetsori juaj SQL është ekzekutuar me sukses." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Kjo pamje ka të paktën këtë numër të radhëve. Ju lutem, refero %" -"sdokumentacionin%s." +"Kjo pamje ka të paktën këtë numër të radhëve. Ju lutem, refero " +"%sdokumentacionin%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3447,6 +3447,7 @@ msgstr "Me të zgjedhur:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3462,12 +3463,12 @@ msgstr "Ndrysho" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3659,7 +3660,7 @@ msgstr "" "hiqet." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Serveri" @@ -3674,11 +3675,11 @@ msgstr "Shfaq" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3694,7 +3695,7 @@ msgstr "Struktura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3720,9 +3721,9 @@ msgstr "Fut" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegjet" @@ -3782,9 +3783,9 @@ msgid "Central columns" msgstr "Kolonat qendrore" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Databazat" @@ -3892,7 +3893,7 @@ msgid "Recent" msgstr "Të fundit" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Tabelat e preferuara" @@ -3963,7 +3964,7 @@ msgstr "Klasifikim" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4331,20 +4332,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Një numër i vogël pikë-lundrues, vlerat e lejuara janë -3.402823466E+38 deri " "-1.175494351E-38, 0, dhe 1.175494351E-38 deri 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Një numër precizion-dyfishtë pikë-lundrues, vlerat e lejuara janë -" -"1.7976931348623157E+308 deri -2.2250738585072014E-308, 0, dhe " +"Një numër precizion-dyfishtë pikë-lundrues, vlerat e lejuara janë " +"-1.7976931348623157E+308 deri -2.2250738585072014E-308, 0, dhe " "2.2250738585072014E-308 deri 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4636,7 +4637,7 @@ msgstr "Maks: %s%s" msgid "MySQL said: " msgstr "MySQL tha: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Sqaro SQL" @@ -4648,7 +4649,7 @@ msgstr "Shmang sqarimin SQL" msgid "Without PHP Code" msgstr "Pa kod PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Krijo kod PHP" @@ -4761,13 +4762,13 @@ msgstr "Përshkrimi" msgid "Use this value" msgstr "Përdor këtë vlerë" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5171,7 +5172,7 @@ msgid "Set value: %s" msgstr "Vendos vlerën: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Rivendos vlerën standarde" @@ -5322,8 +5323,8 @@ msgstr "" "Vendos tipin e autentifikimit [kbd]config[/kbd] (konfig) dhe përfshij emrin " "e përdorimit dhe fjalëkalimin për auto-hyrje, gjë që nuk është një opsion i " "dëshiruar për pritësit (hosts) live. Secili që e di ose e merr me mend URL " -"të phpMyAdmin mund të hyjë direkt në panelin tuaj të phpMyAdmin. Vendos %" -"stipin e autentifikimit%s tek [kbd]cookie[/kbd] ose [kbd]http[/kbd]." +"të phpMyAdmin mund të hyjë direkt në panelin tuaj të phpMyAdmin. Vendos " +"%stipin e autentifikimit%s tek [kbd]cookie[/kbd] ose [kbd]http[/kbd]." #: libraries/config/ServerConfigChecks.class.php:440 #, php-format @@ -5608,23 +5609,37 @@ msgstr "Tabelori që shfaqet kur hyn në një tabelë." msgid "Default table tab" msgstr "Tabelori standard i tabelës" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" +"Bashkëngjitni emrat e tabelave dhe kolonave me prapacitate (backquotes)" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "" +"Bashkëngjitni emrat e tabelave dhe kolonave me prapacitate (backquotes)" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Nëse veprimet e strukturës së tabelës duhet të fshihen." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Fsheh veprimet e strukturës së tabelës" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Shfaq listën e serverit, si listë në vend të lësho-poshtë." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Shfaq serverat si një listë" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5632,11 +5647,11 @@ msgstr "" "Pasivizo veprimet masive të mirëmbajtjes së tabelës, si optimizimi apo " "riparimi i tabelave të zgjedhura të databazës." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Pasivizo mirëmbajtjen multi tabelë" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5644,39 +5659,39 @@ msgstr "" "Vendos numrin e sekondave, që një skript lejohet të ekzekutohet ([kbd]0[/" "kbd] për asnjë kufizim)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Koha maksimale e ekzekutimit" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Shto %s deklaratë" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Ruaj si fil" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Seti i karaktereve të filit" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Formati" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Kompresim" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5686,60 +5701,60 @@ msgstr "Kompresim" msgid "Put columns names in the first row" msgstr "Vendos emrat e kolonave në radhë të parë" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Kolonat e mbyllura me" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Kolonat ikin nga" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Zëvendëso NULL nga" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Largo karakteret CRLF brenda kolonave" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Kolonat ndërpriten me" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Rreshta që përfundojnë me" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Edicioni excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Modeli i emrit të databazës" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Modeli i emrit të serverit" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Modeli i emrit të tabelës" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5748,138 +5763,138 @@ msgstr "Modeli i emrit të tabelës" msgid "Dump table" msgstr "Zbraz tabelën" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Përfshij kokat e tabelës" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Titulli i tabelës" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Titull i vazhdueshëm tabele" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Çelësi i etiketës" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Tipi MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relacionet" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Metoda e eksportit" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Ruaj në server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Mbishkruaj filin(et) ekzistues" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Kujto modelin e emrit të filit" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerën AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" "Bashkëngjitni emrat e tabelave dhe kolonave me prapacitate (backquotes)" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL mënyrë e përshtatshme" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "KRIJO TABELË opsionet:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Krijimi/Aktualizimi/Kontrollo datat" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Përdor futje të vonuara" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Pasivizo kontrollet e çelësave të huaj" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Eksporto pamjet si tabela" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Shto %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Përdor hekzadecimal për BINARY & BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Përdor futje injoruese" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Sintaksa që përdoret kur fut të dhënat" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Gjatësia maksimale e pyetsorit të krijuar" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Tipi i eksportit" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Përfshij eksportin në një transaksion" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Eksporti i kohës në UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Detyro lidhje të sigurtë, ndërsa përdor phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Detyro lidhjen SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5888,142 +5903,142 @@ msgstr "" "përmbajtja[/kbd] janë të dhënat e referencës, [kbd]id[/kbd] është vlera e " "çelësit." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Renditja lësho-poshtë e çelësit të huaj" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Një lësho-poshtë do të përdoret, nëse janë të pranishëm më pak njësi." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Limiti i çelësit të huaj" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Mënyra e shfletimit" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Përshtat mënyrën e shfletimit." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Përshtat opsionet e parazgjedhura." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Zhvillues" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Rregullimet për zhvilluesit phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Mënyra e korrigjimit" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Përshtat mënyrën e korrigjimit." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Standardet e eksportit" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Përshtat opsionet e parazgjedhura të eksportit." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Tiparet" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "E përgjithshme" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Vendos disa opsione të përdorura zakonisht." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importo standardet" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Përshtat opsionet e parazgjedhura të importimit të zakonshëm." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importi / eksporti" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Vendos drejtoritë e importit dhe eksportit dhe opsionet kompresimit." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Opsionet e shfaqjes së databazave." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Paneli i navigimit" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Përshtat shfaqjen e panelit të navigimit." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Serverat" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Opsionet e shfaqjes së serverit." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Opsionet e shfaqjes së tabelës." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Paneli kryesor" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Rregullime tjera kryesore" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Rregullimet që nuk përshtaten diku tjetër." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Titujt e faqes" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6032,19 +6047,19 @@ msgstr "" "[doc@cfg_TitleTable]dokumentacioni[/doc] për vargje magjike, që mund të " "përdoren për të marrë vlera të veçanta." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Dritarja e pyetsorit" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Përshtat opsionet e dritares së pyetsorit" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Siguria" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6052,23 +6067,23 @@ msgstr "" "Ju lutem, vini re se phpMyAdmin është vetëm një ndërfaqe e përdoruesit dhe " "karakteristikat e tij nuk e kufizojnë MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Rregullimet bazë" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autentifikimi" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Rregullimet e autentifikimit." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Konfigurimi i serverit" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6076,15 +6091,15 @@ msgstr "" "Konfigurimi i avancuar i serverit, nuk do i ndryshojë këto opsione, nëse nuk " "e dini se për çfarë janë ata." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Fut parametrat e lidhjes me serverin." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Ruajtja e konfigurimit" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6094,11 +6109,11 @@ msgstr "" "shtesë, shiko [doc@linked-tables]ruajtja e konfigurimit phpMyAdmin[/doc] në " "dokumentacion." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Ndryshon gjurmimin" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6106,109 +6121,109 @@ msgstr "" "Gjurmimi i ndryshimeve të bëra në databazë. Kërkon ruajtjen e konfigurimit " "të phpMyAdmin." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Përshtat opsionet e eksportit" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Përshtat vlerën e parazgjedhur të importit" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Përshtat panelin e navigimit" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Përshtat panelin kryesor" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "Pyetsorët SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL kutia e pyetsorit" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Përshtat lidhjet e shfaqura në kutitë SQL Query (pyetsor)." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Rregullimet e pyetsorëve SQL." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Fillimi" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Përshtat faqen e fillimit." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Struktura e databazës" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Zgjedh cilat detaje do të shfaqn në strukturën e databazës (lista e " "tabelave)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Struktura e tabelës" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Rregullimet për strukturën e tabelës (lista e kolonave)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Tabelorët" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Zgjedh se si i doni tabelorët të punojnë." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Shfaq skemën e relacioneve" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Madhësia e letrës" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Fushat e tekstit" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Përshtat fushat e futjes së tekstit." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Përshtat opsionet e parazgjedhura" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Paralajmërime" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Pasivizo disa nga paralajmërimet e shfaqura nga phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6216,15 +6231,15 @@ msgstr "" "Aftëso kompresimin [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] për " "veprimet e importit dhe eksportit." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Parametra ekstra për iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6232,11 +6247,11 @@ msgstr "" "Nëse aftësohet, phpMyAdmin vazhdon llogaritjen e pyetsorëve shumë-" "deklaratash, edhe nëse një prej pyetsorëve dështon." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Injoro gabimet e deklaratave të shumëfishta" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6246,28 +6261,28 @@ msgstr "" "kohor. Kjo mund të jetë një mënyrë e mirë për të importuar file të mëdha, " "por mund të thyejë transaksionet." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Importim pjesor: lejo ndërprerje" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Pasivizo kontrollet e çelësave të huaj" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Mos aborto në INSERT gabim" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Zëvendëso të dhënat e tabelës me filin" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6275,69 +6290,69 @@ msgstr "" "Formati standard; të jeni i qartë se kjo listë varet nga lokalizimi " "(databaza, tabela) dhe vetëm SQL është gjithmonë e vlefshme." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Formati i filit të importuar" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Përdor fjalë kyçe LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Emrat e kolonës në radhën e parë" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Mos importo radhë të zbrazëta" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importo monedhat (£5.00 në 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Përqindjet e importit si numra dhjetorë të plotë (12.00% në .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Numri i pyetsorëve që shmangen nga fillimi." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Importim pjesor: shmang pyetsorët" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Mos përdor AUTO_INCREMENT për vlerat zero" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Gjendja fillestare për rrëshqitësit" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Sa radhë do të futen në të njëjtën kohë." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Numri i radhëve të futura" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Numri maksimal i karaktereve të shfaqura në çdo kolonë jo-numerike në pamjen " "e shfletimit." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Kufizo karakteret e kolonës" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6348,11 +6363,11 @@ msgstr "" "tek FALSE, e bën të lehtë harrimin e daljes nga serverat e tjerë, kur lidhet " "me servera të shumëfishtë." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Fshij të gjithë gatimet në dalje" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6360,11 +6375,11 @@ msgstr "" "Përcaktoni nëse hyrja e mëparshme duhet të ri-thirret apo jo në mënyrën e " "autentifikimit [kbd]cookie[/kbd] (gatim)." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Ri-thirr emrin e përdoruesit" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6376,49 +6391,49 @@ msgstr "" "ekzistuese dhe do të fshihet sapo të mbyllni dritaren e shfletuesit. Kjo " "rekomandohet për mjedise jo-të-besuar." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Rezerva e gatimit (cookie) të hyrjes" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Përcakto sa i gjatë (në sekonda) është një gatim (cookie) hyrjeje." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Vlefshmëria e gatimit (cookie) të hyrjes" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Madhësi dyfishe e zonës së tekstit për kolonat LONGTEXT." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Zonë teksti e madhe për LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" "Numri maksimal i karaktereve që përdoret kur një pyetsor SQL është shfaqur." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Gjatësia maksimale SQL e shfaqur" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Përdoruesit nuk mund të vendosin një vlerë më të lartë" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Numri maksimal i databazave të paraqitura në listën e databazës." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Maksimumi i databazave" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6426,21 +6441,21 @@ msgstr "" "Numri i njësive që mund të shfaqet në çdo faqe të nivelit të parë të pemës " "së navigimit." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Maksimumi i njësive në nivelin e parë" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "Numri i njësive që mund të shfaqet në çdo faqe të pemës së navigimit." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Njësitë maksimale në degë" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6449,19 +6464,19 @@ msgstr "" "rezultateve përmban më shumë radhë, lidhjet \"Përpara \" dhe \"Tjetër\" do " "të shfaqen." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Numri maksimal i radhëve për t'u shfaqur" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Numri maksimal i tabelave të paraqitura në listën e tabelës." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maksimumi i tabelave" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6469,42 +6484,42 @@ msgstr "" "Numri i bajt, që një skript është i lejuar të ndajë, psh. [kbd]32M[/kbd] " "([kbd]0[/kbd] për asnjë kufizim)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Kufizimi i kujtesës" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Shfaq njësitë e fshehta të pemës së navigimit." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Lidhja me panelin kryesor, duke theksuar databazën aktuale ose tabelën." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Shfaq logon në panelin e navigimit." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Shfaq logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL ku logo në panelin e navigimit do të tregojë." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL e lidhjes së logos" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6512,29 +6527,29 @@ msgstr "" "Hap faqen e lidhur në dritaren kryesore ([kbd]kryesore[/kbd]) ose në një të " "re ([kbd]e re[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Objektivi i lidhjes së logos" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Shfaq zgjedhjen e serverit në krye të panelit të navigimit." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Shfaq zgjedhjen e serverave" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Objektivi për ikonën e hyrjes së shpejtë" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Objektivi për ikonën e hyrjes së shpejtë" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6542,15 +6557,15 @@ msgstr "" "Përcakton numrin minimal të njësive (tabela, pamje, rutinat dhe ngjarjet) " "për të shfaqur një kuti filtri." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Numri minimal i njësive që shfaq kutia e filtrit" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Numri minimal i databazave që shfaq kutia e filtrit të databazës" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6558,100 +6573,100 @@ msgstr "" "Njësitë e grupit në pemën e navigacionit (të vendosur nga ndarës të " "përcaktuar më poshtë)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Njësitë e grupit në pemë" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Vargu që ndan databazat në nivele të ndryshme të pemës." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Ndarësi pemë i databazës" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Vargu që ndan tabelat në nivele të ndryshme të pemës." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Ndarësi i pemës së tabelës" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Thellësia maksimale e pemës së tabelës" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Thekso serverin nën kursorin e miut." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Aftëso theksimin" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Nëse për të pasivizuar mundësinë e zgjerimit të databazës ose jo." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Linja e navigimit të tabelës" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Numri maksimal i tabelave të përdorura së fundi; vendos 0 për ta pasivizuar." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Numri maksimal i tabelave të preferuara; vëndos 0 për ta pasivizuar." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Tabelat e përdorura së fundi" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Këto janë lidhjet Korrigjo, Kopjo dhe Fshij." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Ku tregohen lidhjet radhët e tabelës" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Renditja natyrale" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 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:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Linja e navigimit të tabelës" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip stimulimi i produktit" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6659,19 +6674,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Mënyrë standarde e renditjes" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Përdor lidhje të qëndrueshme për tek databazat MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Lidhjet e vazhdueshme" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6681,11 +6696,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Mungojnë tabelat e ruajtjes së konfigurimit të phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6693,11 +6708,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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Paralajmërimi i ndryshimit server/librari" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6705,27 +6720,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "MySQL paralajmërim fjale e rezervuar" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Si të shfaqen tabelorët e menysë" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Si të shfaqen lidhjet e veprimeve të ndryshme" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Moslejo kolona BLOB dhe BINARY nga korrigjimi." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Mbro kolonat binare" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6735,128 +6750,128 @@ 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Historia e pyetsorit permanent" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Sa pyetsorë do të mbahen në histori." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Gjatësia e historisë së pyetsorit" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Makinë regjistrimi" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Kujto klasifikimin e tabelës" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Renditja e paracaktuar e klasifikimit të çelësit primar" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Përsërit kokat" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Korrigjim i rrjetës: veprim shkrehës" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Kolona e shfaqjes relacionale" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Opsionet e shfaqjes së serverit." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Drejtoria ku eksportet mund të ruhen në server." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Drejtoria e ruajtjes" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Lëre të zbrazët nëse nuk përdoret." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Renditja e autorizimit të hostit (pritësit)" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Lëre të zbrazët për standardet." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Rregullat e autorizimit të hostit (pritësit)" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Lejo hyrjet pa fjalëklalim" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Lejo hyrjen në rrënjë (root)" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Vlera e sesionit" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "Fusha HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6866,19 +6881,19 @@ msgstr "" "pajisjeve[/a] (nuk është lokalizuar në rrënjën e dokumentit; sugjerohet: /" "etc/swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey fili konfig" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Metoda e autentifikimit që përdoret." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Tipi i autentifikimit" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6886,11 +6901,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabela e faqerojtësit" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6898,31 +6913,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabela e informacionit të kolonës" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Lidhje e kompresuar për tek serveri MySQL." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Kompreso lidhjen" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Tipi i lidhjes" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Fjalëkalimi i përdoruesit të kontrollit" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6931,11 +6946,11 @@ msgstr "" "tepër informacion të vlefshëm në [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki[/a]." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Përdoruesi i kontrollit" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6943,11 +6958,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:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Hosti (pritësi) i kontrollit" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6958,15 +6973,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Porta e kontrollit" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Fsheh databazat që përkojnë me shprehjet e rregulta (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6974,15 +6989,15 @@ msgstr "" "Më tepër informacion në [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" "PMA bug tracker[/a] dhe [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Pasivizo përdorimin e INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Fsheh databazat" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6990,23 +7005,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:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL tabela e historisë së pyetsorit" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Emri i pritësit (hostname) ku serveri MySQL funksionon." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Emri i pritësit të serverit" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL e daljes" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -7014,15 +7029,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:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Numri maksimal i preferencave të tabelave për të ruajtur" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "QBE ruajti tabelën e kërkimit" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -7030,11 +7045,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:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Tabela e kolonave qendrore" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -7042,15 +7057,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:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Ptovo të lidhesh pa fjalëkalim." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Lidhu pa fjalëkalim" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7060,30 +7075,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Shfaq vetëm databazat e renditura" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Fjalëkalimi për konfig autent" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF skema: tabela e faqeve" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7093,22 +7108,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Emri i databazës" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Porta e serverit" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7116,11 +7131,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Tabela e përdorur së fundi" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7128,11 +7143,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Tabela e preferuar" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7141,11 +7156,11 @@ msgstr "" "relation-links[/a] (lidhje-relacioni), sugjerohet: [kbd]pma__relation[/kbd] " "(relacion_pma)." -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Tabela e relacionit" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7153,33 +7168,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:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Emri i sesionit të hyrjes" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL e hyrjes" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Foleja e serverit" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Aftëso SSL për lidhje me serverin MySQL." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Përdor SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7187,11 +7202,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:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Dizajneri dhe skema PDF: koordinatat e tabelës" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7199,11 +7214,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Shfaq tabelën e kolonave" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7211,11 +7226,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "UI tabelë e preferencave" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7223,11 +7238,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Shto DROP DATABASE (fshij databazën)" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7235,11 +7250,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Shto DROP TABLE (fshij tabelën)" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7247,20 +7262,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Shto DROP VIEW (fshij pamjen)" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Deklaratat që gjurmohen" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7268,11 +7283,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:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL tabela e gjurmimit të pyetsorit" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7280,11 +7295,11 @@ msgstr "" "Nëse mekanizmi i ndjekjes krijon versione për tabelat dhe shfaqet " "automatikisht." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Krijo automatikisht versionet" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7292,11 +7307,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Tabela e ruajtjes së preferencave të përdoruesit" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7306,11 +7321,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Tabela e përdoruesve" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7320,11 +7335,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Tabela e grupit të përdoruesve" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7332,15 +7347,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Tabela e njësive të navigimit të fshehtë" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Përdoruesi për config auth" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7348,20 +7363,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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Emri fjalëshumë i këtij serveri" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Lejo për të shfaqur të gjitha radhët" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7372,47 +7387,47 @@ 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Shfaq formularin e ndryshimit të fjalëkalimit" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Shfaq formularin krijo databazë" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Shfaq krijimin e vulës kohore" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Shfaq vulën kohore të aktualizuar së fundi" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Shfaq vulën kohore të kontrolluar së fundi" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7420,27 +7435,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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Shfaq tipet e fushave" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Shfaq fushat e funksioneve" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Nëse e tregon , apo jo." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Shfaq idenë (hint)" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7448,66 +7463,66 @@ msgstr "" "Shfaq lidhjen tek rezultati [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Shfaq lidhjen phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Shfaq informacionin e detajuar të serverit MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Shfaq pyetsorët SQL" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Mbaj kutinë e pyetsorit" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Shfaq statistikat" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Shmang tabelat e kyçura" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" "Një paralajmërim shfaqet në faqen kryesore, nëse Suhosin është zbuluar." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin paralajmërim" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7520,13 +7535,13 @@ 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:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Vlefshmëria e gatimit (cookie) të hyrjes" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7535,11 +7550,11 @@ msgstr "" "do të theksohet për zonat e tekstit të pyetsorit SQL (*2) dhe për dritaren e " "pyetsorit (*1.25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Kolonat e zonës së tekstit" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7548,31 +7563,31 @@ msgstr "" "është e theksuar për zonat e tekstit të pyetsorit SQL (*2) dhe për dritaren " "e pyetsorit (*1.25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Radhët e zonës së tekstit" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Titulli standard" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7584,27 +7599,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Dosja e ngarkimit" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 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:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Përdor kërkimin e databazës" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7612,27 +7627,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Aftëso tabelorin Zhvilluesi tek rregullimet" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Kontrollo për versionin e fundit" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7644,11 +7659,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:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "URL proksi" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7658,19 +7673,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Emri i përdoruesit proksi" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Fjalëkalimi për autentifikimin (vërtetimin) me proksi (prokurë)." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Fjalëkalimi proksi" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7678,46 +7693,46 @@ 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Çelës publik për reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Çelës privat për reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Dërgo raportet e gabimit" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "query SQL" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7725,7 +7740,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:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Aftëso mënyrën e konfigurimit zero" @@ -7745,44 +7760,44 @@ msgstr "Autentifikimi HTTP" msgid "Signon authentication" msgstr "Autentifikimi i hyrjes" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV përdor LOAD DATA (ngarko të dhëna)" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "HapDokument Excel" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Shpejt" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Përshtat" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opsionet e eksportit të databazës" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV për MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "HapDokument Tekst" @@ -7995,20 +8010,20 @@ msgstr "Nuk mund t'i numërojë radhët në një set jo të zbutur rezultati" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Nuk ka fjalëkalim" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Fjalëkalimi:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Ri-shkruaj:" @@ -8147,13 +8162,13 @@ msgstr ", @TABLE@ - do të bëhet emri i tabelës" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Kjo vlerë është interpretuar me anë të %1$sstrftime%2$s, kështu që mund të " "përdorni vargjet e formatimit të kohës. Për më tepër, transformimet që " -"vijojnë mund të ndodhin: %3$s. Teksti tjetër do të mbahet siç është. Shiko %4" -"$sFAQ%5$s për detaje." +"vijojnë mund të ndodhin: %3$s. Teksti tjetër do të mbahet siç është. Shiko " +"%4$sFAQ%5$s për detaje." #: libraries/display_export.lib.php:526 msgid "use this for future exports" @@ -8712,11 +8727,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Dokumentacioni dhe informacioni i mëtejshëm rreth PBXT mund të gjendet në %" -"sUebfaqen PrimeBase XT%s." +"Dokumentacioni dhe informacioni i mëtejshëm rreth PBXT mund të gjendet në " +"%sUebfaqen PrimeBase XT%s." #: libraries/engines/pbxt.lib.php:138 msgid "Related Links" @@ -9186,7 +9201,7 @@ msgstr "Dalje" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin - dokumentacioni" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Ringarko panelin e navigimit" @@ -9880,11 +9895,11 @@ msgstr "Mirësevjen në %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Ndoshta nuk keni krijuar një fil konfigurimi. Mund të doni të përdorni %1" -"$sskriptin e instalimit%2$s për ta krijuar atë." +"Ndoshta nuk keni krijuar një fil konfigurimi. Mund të doni të përdorni " +"%1$sskriptin e instalimit%2$s për ta krijuar atë." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10115,7 +10130,7 @@ msgstr "Vendos emrat e kolonave në radhë të parë:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Pritësi (host):" @@ -11132,22 +11147,22 @@ msgstr "" "jo, ju lutem, shto linjën që vijon në seksionin [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Emri i përdoruesit:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Emri i përdoruesit" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Fjalëkalimi" @@ -11175,10 +11190,10 @@ msgstr "ID e serverit" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Hosti (pritësi)" @@ -11192,38 +11207,38 @@ msgstr "" "dukshëm në listë." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Çdo host (pritës)" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokale" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Ky host (pritës)" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Çdo përdorues" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Përdor fushën e tekstit:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Përdor tabelën pritëse" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11232,7 +11247,7 @@ msgstr "" "e ruajtura në tabelën e pritësit (Host) përdoren në vend të tyre." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Ri-shkruaj" @@ -11965,7 +11980,7 @@ msgstr "Asnjë" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Grup përdoruesi" @@ -12035,14 +12050,14 @@ msgstr "Kufizon numrin e lidhjeve të njëkohëshme, që përdoruesi mund të ke #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilegjet specifike të tabelës" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Shënim: emrat e privilegjeve të MySQL janë shprehur në Anglisht." @@ -12051,7 +12066,7 @@ msgid "Administration" msgstr "Administrimi" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Privilegje globale" @@ -12060,7 +12075,7 @@ msgid "Global" msgstr "Globale" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilegjet specifike të databazës" @@ -12079,18 +12094,18 @@ msgstr "" "Lejo të shtosh përdorues dhe privilegje pa i ringarkuar tabelat e " "privilegjeve." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Informacioni i hyrjes" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Përdor fushën e tekstit" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12098,221 +12113,221 @@ msgstr "" "Një llogari ekziston ndërkohë me të njëjtin emër përdorimi por ka mundësi me " "emër tjetër pritësi (hostname)." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Mos ndrysho fjalëkalimin" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Fjalëkalimi për %s u ndryshua me sukses." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Keni anuluar privilegjet për %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Shto përdorues" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Databaza për përdorues" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Krijo databazën me të njëjtin emër dhe dhuro të gjitha privilegjet." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Dhuro të gjitha privilegjet në emrin me karaktere të veçanta (wildcard) " "(username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Dhuro të gjithë privilegjet në databazën \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Përdoruesit që kanë hyrje tek \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Përdoruesi është shtuar." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Përdoruesi" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Dhuro" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Nuk ka privilegje të mjaftueshme për të shfaqur përdoruesit." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Nuk gjendet asnjë përdorues." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Kushdo" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globale" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "databazë-specifike" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "wildcard (shenja të veçanta)" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "Privilegjet specifike të tabelës" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Korrigjo privilegjet" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Tërhiq" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Korrigjo grupin e përdoruesit" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… mbaj të vjetrin." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… fshij të vjetrin nga tabelat e përdoruesve." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… të shfuqizojë të gjitha privilegjet aktive që nga i vjetri, e pastaj t'i " "fshijë." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… fshij të vjetrin nga tabela e përdoruesve dhe pastaj ringarko privilegjet." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Ndrysho informacionin e hyrjes / Kopjo përdorues" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Krijo një përdorues të ri me të njëjtat privilegje dhe …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilegjet specifike të kolonës" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Shto privilegjet në databazat që vijojnë:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Wildcards (karakteret e veçanta) % dhe _ duhet të shmangen me një \\ për t'i " "përdorur ato fjalë për fjalë." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Shto privilegje në tabelën që vijon:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Largo përdoruesit e zgjedhur" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tërhiqi të gjitha privilegjet aktive nga përdoruesit dhe fshij ato më pas." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Fshij databazat që kanë emra të njëjtë si përdoruesit." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Nuk janë zgjedhur përdorues për fshirje!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Ringarkon privilegjet" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Përdoruesit e zgjedhur u fshinë me sukses." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Keni aktualizuar privilegjet për %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Fshin %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Privilegjet u ri-ngarkuan me sukses." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Përdoruesi %s ekziston ndërkohë!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Privilegjet për %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "I ri" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Korrigjo privilegjet:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12320,28 +12335,28 @@ msgstr "" "Shënim: Jeni përpjekur për të korrigjuar privilegjet e përdoruesit, me të " "cilën keni hyrë aktualisht." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Pamja e përgjithshme e përdoruesve" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Shënim: phpMyAdmin i merr privilegjet e përdoruesit direkt nga tabelat e " "privilegjeve MySQL. Përmbajtja e këtyre tabelave mund të ndryshojë nga " "privilegjet që përdor serveri, nëse ato janë ndryshuar manualisht. Në këtë " "rast, ju duhet të %sngarkoni privilegjet%s para se të vazhdoni." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Përdoruesi i zgjedhur nuk gjendet në tabelën e të drejtave." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Keni shtuar një përdorues të ri." @@ -14150,21 +14165,21 @@ msgstr "Madhësia cache e indeksit" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tipi i indeksit:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Përdoruesi:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Komenti:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Tërhiq për të ri-renditur" @@ -15209,8 +15224,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Raporti aktual i kujtesës cache të pyetsorit të lirë në krahasim me " "madhësinë e përgjithshme cache të pyetsorit është %s%%. Duhet të jetë më " @@ -15368,8 +15383,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% prej të gjitha llojeve shkaktojnë tabela të përkohëshme, kjo vlerë " "duhet të jetë nën 10%%." @@ -16842,8 +16857,8 @@ msgstr "concurrent_insert është vendosur në 0" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %" -#~ "s queries." +#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar " +#~ "%s queries." #~ msgid "Add a New User" #~ msgstr "Shto një përdorues të ri" diff --git a/po/sr.po b/po/sr.po index aed8285d95..dd969bc578 100644 --- a/po/sr.po +++ b/po/sr.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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-06-08 19:34+0200\n" "Last-Translator: Nikola Stojaković \n" "Language-Team: Serbian \n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.10-dev\n" #: changelog.php:36 license.php:28 @@ -69,7 +69,7 @@ msgstr "Коментари табеле:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -93,7 +93,7 @@ msgstr "Колона" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -149,8 +149,8 @@ msgid "Links to" msgstr "Везе ка" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -179,13 +179,13 @@ msgstr "Примарни" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -208,13 +208,13 @@ msgstr "Не" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -270,14 +270,14 @@ msgstr "" "сазнали зашто, кликните %sовде%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Табела" @@ -290,7 +290,7 @@ msgid "Rows" msgstr "Редова" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Величина" @@ -395,9 +395,9 @@ msgstr "Статус" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -611,15 +611,15 @@ msgstr "Додај новог корисника" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -654,14 +654,14 @@ msgstr "Комплетан INSERT (са именима поља)" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %" -"sдокументацију%s за начине превазилажења овог ограничења." +"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " +"%sдокументацију%s за начине превазилажења овог ограничења." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -745,7 +745,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Назад" @@ -769,7 +769,7 @@ msgid "General Settings" msgstr "Опште особине релација" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Промени лозинку" @@ -862,7 +862,7 @@ msgstr "Информације о верзији" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Документација" @@ -1147,7 +1147,7 @@ msgstr "Додај ново поље" msgid "Edit Index" msgstr "Уреди следећи ред" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1185,7 +1185,7 @@ msgstr "Морате додати барем једно поље." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1222,12 +1222,12 @@ msgstr "Име домаћина је празно!" msgid "The user name is empty!" msgstr "Име корисника није унето!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Лозинка је празна!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" @@ -1452,7 +1452,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1757,7 +1757,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -2006,7 +2006,7 @@ msgstr "SQL упит" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2280,7 +2280,7 @@ msgstr "Величина показивача података" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Игнориши" @@ -2472,7 +2472,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Прикажи све" @@ -2584,7 +2584,7 @@ msgstr "Додај ново поље" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежу" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy msgid "Link with main panel" @@ -3151,16 +3151,16 @@ msgid "Delete" msgstr "Обриши" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3294,7 +3294,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3750,8 +3750,8 @@ msgstr "Ваш SQL упит је успешно извршен" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3789,6 +3789,7 @@ msgstr "Означено:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3804,12 +3805,12 @@ msgstr "Промени" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -4016,7 +4017,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Сервер" @@ -4031,11 +4032,11 @@ msgstr "Поглед" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -4051,7 +4052,7 @@ msgstr "Структура" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4077,9 +4078,9 @@ msgstr "Нови запис" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Привилегије" @@ -4142,9 +4143,9 @@ msgid "Central columns" msgstr "Додај/обриши колону" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Базе" @@ -4269,7 +4270,7 @@ msgid "Recent" msgstr "Поништи" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4347,7 +4348,7 @@ msgstr "Сортирање" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4732,14 +4733,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4996,7 +4997,7 @@ msgstr "Максимална величина: %s%s" msgid "MySQL said: " msgstr "MySQL рече: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Објасни SQL" @@ -5008,7 +5009,7 @@ msgstr "Прескочи објашњавање SQL-a" msgid "Without PHP Code" msgstr "без PHP кода" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Направи PHP код" @@ -5128,13 +5129,13 @@ msgstr "Опис" msgid "Use this value" msgstr "Користи ову вредност" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5568,7 +5569,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5931,78 +5932,90 @@ msgstr "" msgid "Default table tab" msgstr "Преименуј базу у" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Користи ' за ограничавање имена поља" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Користи ' за ограничавање имена поља" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Предложи структуру табеле" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Предложи структуру табеле" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Радње на табели" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Име" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Сачувај као датотеку" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "Карактер сет датотеке:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Компресија" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -6014,75 +6027,75 @@ msgstr "Компресија" msgid "Put columns names in the first row" msgstr "Стави имена поља у први ред" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Поља ограничена са" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Ескејп карактер      " -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "Замени NULL са" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Линије се завршавају са" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Линије се завршавају са" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel издање" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 #, fuzzy msgid "Database name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 #, fuzzy msgid "Server name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 #, fuzzy msgid "Table name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6093,530 +6106,530 @@ msgstr "Шаблон имена датотеке" msgid "Dump table" msgstr "%s табела" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Укључи коментар табеле" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Коментар табеле" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Настављен коментар табеле" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Ознака кључа" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-типови" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Релације" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тип извоза" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Препиши постојеће датотеке" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 #, fuzzy msgid "Remember file name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Користи ' за ограничавање имена поља" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Мод SQL компатибилности" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Датуми креирања/ажурирања/провере" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Користи одложена уметања" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Искључи провере страних кључева" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "Направи нову табелу у бази %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Додај %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Користи хексадецимално за BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Игнориши дупликате при уметању" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Максимална дужина направљеног упита" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "Тип извоза" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Обави извоз у трансакцији" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 #, fuzzy msgid "Export time in UTC" msgstr "Тип извоза" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Automatic recovery mode" msgid "Customize browse mode." msgstr "Режим аутоматског опоравка" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy msgid "Customize default options." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy msgid "Customize edit mode." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Export defaults" msgstr "Увоз датотека" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy msgid "Customize default export options." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Направи" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 #, fuzzy msgid "Import defaults" msgstr "Увоз датотека" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "Customize default common import options." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy msgid "Customize appearance of the navigation panel." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Сервери" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Add new field" msgid "Main panel" msgstr "Додај ново поље" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Број стране:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Customize query window options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Документација" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Authentication settings." msgstr "Репликација" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "MySQL connection collation" msgid "Enter server connection parameters." msgstr "Сортирање за MySQL везу" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Customize export options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 #, fuzzy msgid "Customize import defaults" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy msgid "Customize navigation panel" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy msgid "Customize main panel" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "SQL упит" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "SQL упит" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "SQL упит" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "Статус" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy msgid "Customize startup page." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "База за корисника" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "База за корисника" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "Табела" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Релациона схема" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Димензије папира" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Користи текст поље" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy msgid "Customize text input fields." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Customize default options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -6627,122 +6640,122 @@ msgstr "" "ограничења. Ово може бити добар начин увоза великих датотека, али са друге " "стране може покварити трансакције." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Искључи провере страних кључева" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Замени податке у табели са подацима из датотеке" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Формат датотека за увоз" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Користи кључну реч LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Стави имена поља у први ред" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start." msgstr "Број записа (упита) које треба прескочити:" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Number of inserted rows" msgstr "Број сортираних редова." -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6750,51 +6763,51 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of databases displayed in database list." msgstr "Број отворених табела." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Maximum databases" msgstr "База не постоји" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6802,13 +6815,13 @@ msgid "" "the navigation tree." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "Максимална величина привремених датотека за сортирање" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6816,99 +6829,99 @@ msgid "" "tree." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of tables displayed in table list." msgstr "Број отворених табела." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Memory limit" msgstr "Ограничења ресурса" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Прикажи мрежу" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy msgid "Show logo in navigation panel." msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "The number of tables that are open." msgid "" @@ -6916,970 +6929,970 @@ msgid "" "display a filter box." msgstr "Број отворених табела." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of items to display the filter box" msgstr "Број отворених табела." -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of databases to display the database filter box" msgstr "Број отворених табела." -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 #, fuzzy msgid "Database tree separator" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Коментар табеле" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Број отворених табела." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy msgid "Recently used tables" msgstr "Провери табелу" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Промени редослед у табели" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Коментар табеле" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Промени име табеле у " -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key default sort order" msgstr "Примарни кључ је управо додат %s." -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Нити поправке" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational schema" msgid "Relational display" msgstr "Релациона схема" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 #, fuzzy msgid "Save directory" msgstr "Основни директоријум података" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Вредност сесије" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy msgid "Authentication method to use." msgstr "Репликација" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Compress connection to MySQL server." msgstr "Не могу да се пријавим на MySQL сервер" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 #, fuzzy msgid "Connection type" msgstr "Конекције" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Било који домаћин" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Било који домаћин" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "База не постоји" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "назив сервера" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Додај/обриши колону" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Do not change the password" msgid "Try to connect without password." msgstr "Немој да мењаш лозинку" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "назив базе" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "ИД сервера" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Анализирај табелу" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Променљиве" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Поправи табелу" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "Избор сервера" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Приказујем коментаре колоне" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Дефрагментирај табелу" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Име" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Режим аутоматског опоравка" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Користи табеле" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Користи табелу домаћина" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Прикажи информације о PHP-у" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy msgid "Show Last check timestamp" msgstr "Прикажи статус подређених сервера" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Прикажи отворене табеле" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Прикажи мрежу" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "Прикажи комплетне упите" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "SQL упит" -#: libraries/config/messages.inc.php:764 -msgid "Allow to display database and table statistics (eg. space usage)." -msgstr "" - -#: libraries/config/messages.inc.php:765 -#, fuzzy -msgid "Show statistics" -msgstr "Статистике реда" - #: libraries/config/messages.inc.php:766 -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:767 #, fuzzy +msgid "Show statistics" +msgstr "Статистике реда" + +#: libraries/config/messages.inc.php:768 +msgid "" +"Mark used tables and make it possible to show databases with locked tables." +msgstr "" + +#: libraries/config/messages.inc.php:769 +#, fuzzy msgid "Skip locked tables" msgstr "Прикажи отворене табеле" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Додај/обриши колону" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy msgid "Default title" msgstr "Преименуј базу у" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7887,53 +7900,53 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 #, fuzzy msgid "Upload directory" msgstr "Основни директоријум података" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7941,84 +7954,84 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Корисничко име:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Лозинка" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "ИД сервера" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Enable Zero Configuration mode" @@ -8040,46 +8053,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV користећи LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Опције за извоз базе" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8330,20 +8343,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Нема лозинке" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Лозинка:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8516,8 +8529,8 @@ msgstr "" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -9075,8 +9088,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9568,7 +9581,7 @@ msgstr "Одјављивање" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документација" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "Опције за извоз базе" @@ -10260,8 +10273,8 @@ msgstr "Добродошли на %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Вероватан разлог за ово је да нисте направили конфигурациону датотеку. " "Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили." @@ -10529,7 +10542,7 @@ msgstr "Стави имена поља у први ред" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11597,7 +11610,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11605,16 +11618,16 @@ msgstr "Име корисника" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Име корисника" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Лозинка" @@ -11645,10 +11658,10 @@ msgstr "ИД сервера" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Домаћин" @@ -11660,47 +11673,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Било који домаћин" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Локални" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Овај сервер" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Било који корисник" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Користи текст поље" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Користи табелу домаћина" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Поновите унос" @@ -12521,7 +12534,7 @@ msgstr "нема" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12590,14 +12603,14 @@ msgstr "Ограничава број истовремених конекциј #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12608,7 +12621,7 @@ msgid "Administration" msgstr "Администрација" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Глобалне привилегије" @@ -12619,7 +12632,7 @@ msgid "Global" msgstr "глобално" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" @@ -12638,276 +12651,276 @@ msgstr "" "Дозвољава додавање корисника и привилегија без поновног учитавања табела " "привилегија." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Подаци о пријави" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Користи текст поље" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Немој да мењаш лозинку" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинка за %s је успешно промењена." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Забранили сте привилегије за %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Било који корисник" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "База за корисника" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Направи базу са истим именом и додај све привилегије." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Провери привилегије за базу \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Корисници који имају приступ \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "Поглед %s је одбачен" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Корисник" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Омогући" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисник није нађен." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Било који" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "глобално" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "Специфично за базу" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "џокер" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Специфично за базу" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Промени привилегије" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Забрани" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Уреди следећи ред" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… сачувај старе." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… обриши старе из табела корисника." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… обустави све привилегије старог корисника и затим га обриши." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… обриши старог из табеле корисника и затим поново учитај привилегије." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Промени информације о пријави / Копирај корисника" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Направи новог корисника са истим привилегијама и …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Привилегије везане за колоне" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Додај привилегије на следећој бази" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Додај привилегије на следећој табели" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Уклони изабране кориснике" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Обустави све активне привилегије корисника и затим их обриши." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Одбаци базе које се зову исто као корисници." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Ниједан корисник није одабран за брисање!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Поново учитавам привилегије" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Изабрани корисници су успешно обрисани." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Ажурирали сте привилегије за %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Бришем %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s већ постоји!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегије" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Промени привилегије" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Преглед корисника" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Додали сте новог корисника." @@ -14828,22 +14841,22 @@ msgstr "Име кључа :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Тип кључа :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Корисник" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy msgid "Comment:" msgstr "Коментари" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15890,8 +15903,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -16025,8 +16038,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/sr@latin.po b/po/sr@latin.po index 8b76fdc970..d83b073b0c 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-03-31 14:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) \n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.9-dev\n" #: changelog.php:36 license.php:28 @@ -73,7 +73,7 @@ msgstr "Komentari tabele" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -97,7 +97,7 @@ msgstr "Kolona" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -153,8 +153,8 @@ msgid "Links to" msgstr "Veze ka" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -183,13 +183,13 @@ msgstr "Primarni" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -212,13 +212,13 @@ msgstr "Ne" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -274,14 +274,14 @@ msgstr "" "zašto, kliknite %sovde%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabela" @@ -294,7 +294,7 @@ msgid "Rows" msgstr "Redova" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Veličina" @@ -395,9 +395,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -600,15 +600,15 @@ msgstr "Dodaj geometriju" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -649,14 +649,14 @@ msgstr "Kompletan INSERT" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %" -"sdokumentaciju%s za načine prevazilaženja ovog ograničenja." +"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " +"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -745,7 +745,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Nazad" @@ -768,7 +768,7 @@ msgid "General Settings" msgstr "Opšta podešavanja" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Promeni lozinku" @@ -859,7 +859,7 @@ msgstr "Informacije o verziji" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentacija" @@ -958,8 +958,8 @@ msgid "" "extended features have been deactivated. %sFind out why%s. " msgstr "" "Skladište konfiguracije za phpMyAdmin nije kompletno konfigurisano, neke " -"dodatne mogućnosti su deaktivirane. Da bi ste saznali zašto kliknite %sovde%" -"s." +"dodatne mogućnosti su deaktivirane. Da bi ste saznali zašto kliknite %sovde" +"%s." #: index.php:549 msgid "" @@ -1137,7 +1137,7 @@ msgstr "Dodaj indeks" msgid "Edit Index" msgstr "Izmeni indeks" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" @@ -1173,7 +1173,7 @@ msgstr "Morate dodati barem jednu kolonu." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1208,12 +1208,12 @@ msgstr "Ime domaćina je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije uneto!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" @@ -1419,7 +1419,7 @@ msgstr "Molimo vas da dodate bar jednu promenljivu u seriju podataka" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1711,7 +1711,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1929,7 +1929,7 @@ msgstr "Prikažiokvir sa upitima" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2206,7 +2206,7 @@ msgstr "Sadržaj tačke podataka" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignoriši" @@ -2406,7 +2406,7 @@ msgstr "Kliknite strelici na dole
da bi ste izmenili vidljivost kolone" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Prikaži sve" @@ -2527,7 +2527,7 @@ msgstr "Sakrij indekse" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u levom okviru" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main frame" @@ -3045,16 +3045,16 @@ msgid "Delete" msgstr "Obriši" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3192,7 +3192,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3617,11 +3617,11 @@ msgstr "Vaš SQL upit je uspešno izvršen" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Ovaj pogled ima najmanje ovaj broj redova. Molimo vas pogledajte %" -"sdokumentaciju%s." +"Ovaj pogled ima najmanje ovaj broj redova. Molimo vas pogledajte " +"%sdokumentaciju%s." #: libraries/DisplayResults.class.php:4560 #, fuzzy, php-format @@ -3658,6 +3658,7 @@ msgstr "Označeno:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3673,12 +3674,12 @@ msgstr "Promeni" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3885,7 +3886,7 @@ msgstr "" "da se ukloni." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3900,11 +3901,11 @@ msgstr "Pogled" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3920,7 +3921,7 @@ msgstr "Struktura" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3946,9 +3947,9 @@ msgstr "Novi zapis" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegije" @@ -4010,9 +4011,9 @@ msgid "Central columns" msgstr "Kolone tekstulanih polja" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Baze" @@ -4135,7 +4136,7 @@ msgid "Recent" msgstr "Poništi" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4216,7 +4217,7 @@ msgstr "Sortiranje" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4595,14 +4596,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4859,7 +4860,7 @@ msgstr "Maksimalna veličina: %s%s" msgid "MySQL said: " msgstr "MySQL reče: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Objasni SQL" @@ -4871,7 +4872,7 @@ msgstr "Preskoči objašnjavanje SQL-a" msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Napravi PHP kod" @@ -4991,13 +4992,13 @@ msgstr "Opis" msgid "Use this value" msgstr "Koristi ovu vrednost" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5425,7 +5426,7 @@ msgid "Set value: %s" msgstr "Postavi vrednost: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Vrati podrazumevanu vrednost" @@ -5860,27 +5861,39 @@ msgstr "Kartica koja se prikazuje kada se ulazi u tabelu" msgid "Default table tab" msgstr "Podrazumevana kartica tabele" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Stavi imena tabela i kolona u komentar" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Stavi imena tabela i kolona u komentar" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Predloži strukturu tabele" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Predloži strukturu tabele" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Prikaži spisak servera u običnoj listi umesto u padajućoj." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Prikaži servere u obliku liste" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5888,11 +5901,11 @@ msgstr "" "Isključi masovne operacije održavanja tabela, kao što su optimizacija ili " "popravljanje izabranih tabela iz baze." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Isključi multi-tabelarno održavanje" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5904,39 +5917,39 @@ msgstr "" "Postavi broj sekundi koliko je dozvoljeno da se skript izvršava ([kbd]0[/" "kbd] za neograničeno)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maksimalno vreme izvršavanja" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Dodaj %s iskaz" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Sačuvaj kao datoteku" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Karakter set datoteke" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5946,70 +5959,70 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Stavi imena kolona u prvi red" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" msgstr "Kolone uokvirene sa:" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" msgstr "Kolone eskejpovane sa:" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL with:" msgid "Replace NULL with" msgstr "Zameni NULL sa:" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Izbaci CRLF znakove u kolonama" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Kolone se završavaju sa" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" msgstr "Linije se završavaju sa:" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel izdanje" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Šablon imena baze" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Šablon imena servera" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Šablon imena tabele" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6018,143 +6031,143 @@ msgstr "Šablon imena tabele" msgid "Dump table" msgstr "Obriši tabelu" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Uključi komentar tabele" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Komentar tabele" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Nastavljen komentar tabele" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Oznaka ključa" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-tipovi" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Način izvoza" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Snimi na server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Zapamti šablon imena datoteke" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Stavi imena tabela i kolona u komentar" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Mod SQL kompatibilnosti" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE opcije:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Datumi kreiranja/ažuriranja/provere" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Koristi odložena umetanja" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Isključi provere stranih ključeva" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Exporting rows from \"%s\" table" msgid "Export views as tables" msgstr "Izvoz redova iz \"%s\" tabele" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Koristi heksadecimalno za BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Ignoriši duplikate pri umetanju" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Sintaksa koja se koristi kod umetanja podataka" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maksimalna dužina napravljenog upita" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Tip izvoza" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Obavi izvoz u transakciji" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Izvezi vreme u UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "Obavezno uspostavite bezbednu vezu dok koristite phpMyAdmin" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Obavezno koristi SSL vezu" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -6166,192 +6179,192 @@ msgstr "" "Redosled sortiranja stavki u padajućoj listi sa stranim ključevima; [kbd]" "content[/kbd] je referencirani podatak; [kbd]id[/kbd] je vrednost ključa" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Redosled stranih ključeva u padajućoj listi" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "Biće korišćena padajuća lista ako je manje stavki prisutno" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Ograničenje stranog ključa" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Režim pregleda" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "Prilagodi režim pretraživanja" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default options" msgid "Customize default options." msgstr "Prilagodi podrazumevane opcije" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Programer" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "Podešavanja za phpMyAdmin programere" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Režim uređenja" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "Podešavanje režima uređenja" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Podrazumevane opcije izvoza" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "Prilagodi podrazumevane opcije izvoza" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Karakteristike" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Opšte" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "Postavite neke najčešće korišćene opcije" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Podrazumevane opcije uvoza" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "Podešavanje podrazumevanih najčešće korišćenih opcija za uvoz" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Izvoz/uvoz" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "Podesite direktorijume za izvoz i uvoz i opcije za kompresiju" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "Opcije prikaza baza" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "Navigacioni okvir" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "Prilagodite izgled navigacionog okvira" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Serveri" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "Opcije prikaza servera" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "Opcije prikaza tabela" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "Glavni okvir" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Majkrosoft Ofis" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Ostale osnovne postavke" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "Postavke koje se ne uklapaju nigde drugde" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Naslovi strana" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Prilagodi opcije prozora sa upitima" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Bezbednost" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6363,25 +6376,25 @@ msgstr "" "Imajte na umu da je phpMyAdmin samo korisnički interfejs i onjegove funkcije " "ne ograničavaju MySQL" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Osnovne postavke" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Autentikacija" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "Podešavanje autentikacije" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Konfiguracija servera" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6393,155 +6406,155 @@ msgstr "" "Napredna konfiguracija servera, nemojte menjati ove opcije osim ako niste " "sigurni čemu služe" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "Unesite parametre veze sa serverom" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Skladište konfiguracije" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Praćenje promena" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" "Praćenje promena u bazi podataka. Zahteva phpMyAdmin skladište konfiguracije." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Podešavanje opcija izvoza" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Podešavanje podrazumevanih opcija uvoza" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "Prilagođavanje navigacionog okvira" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "Prilagođavanje glavnog okvira" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL upiti" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "Okvir sa SQL upitima" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "Prilagođavanje linkova prikazanih u okvirima SQL upita" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "Podešavanje SQL upita" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Početno pokretanje" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "Prilagođavanje početne strane" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "Baza za korisnika" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "Baza za korisnika" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Kartice" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Izaberite kako želite kartice da rade" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Prikaži relacionu šemu" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Dimenzije papira" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Tekstualna polja" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "Podešavanje text input polja" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Prilagodi podrazumevane opcije" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Upozorenja" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Isključi neka od upozorenja koja je phpMyAdmin prikazao" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6553,15 +6566,15 @@ msgstr "" "Omogući [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] kompresiju za " "operacije uvoza i izvoza" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Dodatni parametri za iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6573,11 +6586,11 @@ msgstr "" "Ako je uključeno, phpMyAdmin će nastaviti da izračunava više-iskazne upite " "čak i ako jedan od upita nije uspeo" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignoriši greške kod višestrukih iskaza" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6587,28 +6600,28 @@ msgstr "" "ograničenja. Ovo može biti dobar način uvoza velikih datoteka, ali sa druge " "strane može prekinuti transakcije." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Delimični uvoz: dozvolite prekid" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Isključi provere stranih ključeva" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Ne prekidaj izvršavanje ako se desi greška kod umetanja" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Zameni podatke u tabeli sa podacima iz datoteke" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6620,62 +6633,62 @@ msgstr "" "Podrazumevani format; budite svesni da ova lista zavisi od lokacije (baza, " "tabela) i samo SQL je uvek na raspolaganju" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Format datoteka za uvoz" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Koristi ključnu reč LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Imena kolona u prvom redu" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Ne uvozi prazne redove" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Uvezi valute ($5.00 do 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Uvezi procente kao prave decimalne brojeve (12.00% kao .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "Broj upita za preskakanje od starta" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Delimični uvoz: preskoči upite" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne koristi AUTO_INCREMENT za nulte vrednosti" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Početno stanje za klizače" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "Koliko redova može biti umetnuto odjednom" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Broj umetnutih redova" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "" #| "Maximum number of characters shown in any non-numeric column on browse " @@ -6686,22 +6699,22 @@ msgstr "" "Maksimalan broj prikazanih znakova u bilo kojoj nenumeričkoj koloni u " "pogledu za preglede" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Ograničenje znakova kolone" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Obriši sve kukije nakon odjavljivanja" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " @@ -6713,11 +6726,11 @@ msgstr "" "Tajna fraza koja se koristi za enkripciju kukija u [kbd]cookie[/kbd] " "autentikaciji" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Opozovi ime korisnika" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6725,54 +6738,54 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "Definiše koliko dugo (u sekundama) je kuki za prijavu validan" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Maksimalni broj znakova koji se koristi kada se SQL upit prikazuje" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Maksimalna dužina prikazanog SQL-a" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Korisnici ne mogu da zadaju veću vrednost" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." msgstr "Maksimalni broj tabela prikazanih u listi tabela" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Maksimalan broj baza" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6780,13 +6793,13 @@ msgid "" "the navigation tree." msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for input field" msgid "Maximum items on first level" msgstr "Maksimalna veličina za input polje" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -6794,31 +6807,31 @@ msgid "" "tree." msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Maksimalni broj redova za prikaz" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "Maksimalni broj tabela prikazanih u listi tabela" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maksimalan broj tabela" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6830,45 +6843,45 @@ msgstr "" "Broj bajtova koji je dozvoljen da skript zauzme, primer [kbd]32M[/kbd] ([kbd]" "0[/kbd] nema ograničenja)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Ograničenje memorije" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "Prikaži logo u levom okviru" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "Prikaži logo u levom okviru" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Prikaži logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to." msgstr "URL na koji će logo iz navigacionog okvira pokazivati" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL za link na logo-u" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -6880,31 +6893,31 @@ msgstr "" "Otvori linkovanu stranu u glavnom prozoru ([kbd]main[/kbd]) ili u novom " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "Prikaz izbora servera na vrhu levog okvira" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Prikaži izbor servera" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Zadatak ikonice za brzi pristup" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Zadatak ikonice za brzi pristup" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "" @@ -6912,19 +6925,19 @@ msgid "" "display a filter box." msgstr "Minimalni broj tabela za prikaz okvira za filter tabela" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of items to display the filter box" msgstr "Minimalni broj tabela za prikaz okvira za filter tabela" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of databases to display the database filter box" msgstr "Broj otvorenih tabela." -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " @@ -6936,133 +6949,133 @@ msgstr "" "Samo u pojednostavljenoj verziji; prikaži baze u obliku drveta (određeno " "separatorom definisanim u nastavku ispod)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "String koji odvaja baze u različitim nivoima stabla" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Separator drveta baze" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "String koji razdvaja tabele u različite nivoe drveta" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Separator tabela u drvetu" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Maksimalna dubina drveta za tabele" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "Naglasi server koji se nalazi ispod kursora miša" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Omogući naglašavanje" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Komentar tabele" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Maksimalni broj nedavno korišćenih tabela; postavite na 0 da isključite" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "Maksimalni broj nedavno korišćenih tabela; postavite na 0 da isključite" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Skorije korišćene tabele" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Gde da se prikažu linkovi na redove tabele" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Prirodni redosled" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, 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:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Komentar tabele" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Podrazumevani redosled sortiranja" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, 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:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Trajne veze" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7077,11 +7090,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Nedostaju phpMyAdmin skladišne tabele" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -7093,11 +7106,11 @@ msgstr "" "Isključi podrazumevano upozorenje koje se prikazuje ako je mcrypt nedostupan " "kod autentikacije uz pomoć kukija" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7111,78 +7124,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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Zaštiti binarne kolone" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Stalna istorija upita" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, 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:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Dužina istorije upita" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Zapamti način sortiranja u tabeli" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Podrazumevani redosled sortiranja" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -7191,666 +7204,666 @@ msgid "" msgstr "" "Ponovi zaglavlje nakon svakih X ćelija, [kbd]0[/kbd] isključuje ovu funkciju" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Ponovi zaglavlja" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Relacioni prikaz kolone" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "Opcije prikaza servera" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 #, 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:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Snimi direktorijum" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, 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:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Redosled autorizacije hostova" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "Ostavi prazno za podrazumevane vrednosti" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Pravila autorizacije hostova" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Dozvoli prijavljivanje bez lozinke" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Dozvoli prijavljivanje root-a" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Vrednost sesije" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication settings" msgid "Authentication method to use." msgstr "Podešavanje autentikacije" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Tip povezivanja" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Kontrolni domaćin" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control host" msgid "Control port" msgstr "Kontrolni domaćin" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Sakrij baze" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Ime servera" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "Kolone tekstulanih polja" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Allow logins without a password" msgid "Try to connect without password." msgstr "Dozvoli prijavljivanje bez lozinke" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Naziv baze" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Port na serveru" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Skorašnje korišćena tabela" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Promenljive" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relaciona tabela" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Prikaži kolone tabele" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabela podešavanja korisničkog interfejsa" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Praćenje komandi" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Automatski kreiraj verzije" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Koristi tabele" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Koristi tabelu domaćina" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "Prikaži informacije o PHP-u" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy msgid "Show Last check timestamp" msgstr "Prikaži status podređenih servera" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Prikaži tipove polja" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, 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:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Prikaži savet" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Prikaži SQL upite" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Zadrži okvir za upite" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Prikaži statistike" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Preskoči zaključane tabele" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7865,51 +7878,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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Kolone tekstulanih polja" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Podrazumevani naslov" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7917,52 +7930,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Pošalji direktorijum" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7970,34 +7983,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "Korisničko ime" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -8009,55 +8022,55 @@ msgstr "" "Omogući [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] kompresiju za " "operacije uvoza i izvoza" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "Port na serveru" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Izvršeni upiti" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8079,46 +8092,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV koristeći LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Opcije za izvoz baze" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8350,20 +8363,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Lozinka:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8505,13 +8518,13 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ova vrednost se interpretira korišćenjem %1$sstrftime%2$s, tako da možete da " "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " -"transformacije: %3$s. Preostali tekst će ostati kako jeste. Čogledaj %4$sFAQ%" -"5$s za detalje." +"transformacije: %3$s. Preostali tekst će ostati kako jeste. Čogledaj %4$sFAQ" +"%5$s za detalje." #: libraries/display_export.lib.php:526 msgid "use this for future exports" @@ -9047,8 +9060,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9529,7 +9542,7 @@ msgstr "Odjavljivanje" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Navigation frame" msgid "Reload navigation panel" @@ -10211,8 +10224,8 @@ msgstr "Dobrodošli na %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. " "Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili." @@ -10453,7 +10466,7 @@ msgstr "Stavi imena kolona u prvi red" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11474,7 +11487,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11482,16 +11495,16 @@ msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Ime korisnika" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Lozinka" @@ -11521,10 +11534,10 @@ msgstr "ID servera" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Domaćin" @@ -11536,47 +11549,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Bilo koji domaćin" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokalni" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Ovaj server" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Koristi tekst polje" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Koristi tabelu domaćina" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Ponovite unos" @@ -12333,7 +12346,7 @@ msgstr "Nema" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12402,14 +12415,14 @@ msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12420,7 +12433,7 @@ msgid "Administration" msgstr "Administracija" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globalne privilegije" @@ -12431,7 +12444,7 @@ msgid "Global" msgstr "globalno" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" @@ -12450,268 +12463,268 @@ msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Podaci o prijavi" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Nemoj da menjaš lozinku" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspešno promenjena." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Zabranili ste privilegije za %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Dodaj korisnika" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Baza za korisnika" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Dodeli sva prava pristupa za bazu \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Korisnici koji imaju pristup \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Korisnik je dodat." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Korisnik" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Omogući" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Ni jedan korisnik nije pronađen." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Bilo koji" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "globalno" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "džoker" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Specifično za bazu" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Promeni privilegije" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Zabrani" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Uredi sledeći red" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… sačuvaj stare." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… obriši stare iz tabela korisnika." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… obustavi sve privilegije starog korisnika i zatim ga obriši." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Napravi novog korisnika sa istim privilegijama i …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Dodaj privilegije na sledećoj bazi" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "Pre džokera _ i % treba staviti znak \\ ako ih koristite samostalno." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Dodaj privilegije na sledećoj tabeli" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Nijedan korisnik nije odabran za brisanje!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Promeni privilegije" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Pregled korisnika" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." @@ -14575,23 +14588,23 @@ msgstr "Ime ključa :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tip ključa :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Korisnik" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Komentar" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15593,8 +15606,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15716,8 +15729,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/sv.po b/po/sv.po index 9d6026b978..911827dddb 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-12-29 15:37+0200\n" "Last-Translator: Anders Jonsson \n" "Language-Team: Swedish \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2-dev\n" @@ -67,7 +67,7 @@ msgstr "Tabellkommentarer:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Kolumn" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Länkar till" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Primär" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Nej" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -265,14 +265,14 @@ msgstr "" "Konfigurationsschemat för phpMyAdmin har avaktiverats. %sVisa orsaken%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tabell" @@ -285,7 +285,7 @@ msgid "Rows" msgstr "Rader" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Storlek" @@ -378,9 +378,9 @@ msgstr "Status" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -576,15 +576,15 @@ msgstr "Addera geometri" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -621,8 +621,8 @@ msgstr "kompletta infogningar" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Du försökte ladda upp en fil som är för stor. Se %sdocumentation%s för att " "gå runt denna begränsning." @@ -711,7 +711,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Föregående" @@ -735,7 +735,7 @@ msgid "General Settings" msgstr "Allmänna inställningar" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Byt lösenord" @@ -810,7 +810,7 @@ msgstr "Versionsinformation:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentation" @@ -939,8 +939,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %" -"s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " +"%s. Detta kan orsaka oförutsägbara beteenden." #: index.php:621 #, php-format @@ -1092,7 +1092,7 @@ msgstr "Addera index" msgid "Edit Index" msgstr "Redigera index" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Lägg till %s kolumn(er) till index" @@ -1127,7 +1127,7 @@ msgstr "Du måste lägga till åtminstone en kolumn." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1160,12 +1160,12 @@ msgstr "Värdnamnet är tomt!" msgid "The user name is empty!" msgstr "Användarnamnet saknas!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Lösenordet saknas!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Lösenorden överensstämmer inte!" @@ -1366,7 +1366,7 @@ msgstr "Lägg till minst en variabel till serien!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1655,7 +1655,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1869,7 +1869,7 @@ msgstr "Visa frågerutan" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2138,7 +2138,7 @@ msgstr "Innehåll för datapunkt" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ignorera" @@ -2325,7 +2325,7 @@ msgstr "Klicka på pilen
för att växla kolumnens synlighet." #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Visa alla" @@ -2433,7 +2433,7 @@ msgstr "Dölj Panel" msgid "Show hidden navigation tree items." msgstr "Visa dolda navigationsträdsobjekt." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main panel" @@ -2950,16 +2950,16 @@ msgid "Delete" msgstr "Radera" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3098,7 +3098,7 @@ msgid "During current session" msgstr "Hoppa över nuvarande fel" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3491,8 +3491,8 @@ msgstr "Din SQL-fråga utfördes korrekt." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." #: libraries/DisplayResults.class.php:4560 @@ -3527,6 +3527,7 @@ msgstr "Med markerade:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3542,12 +3543,12 @@ msgstr "Ändra" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3741,7 +3742,7 @@ msgstr "" "bort." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3756,11 +3757,11 @@ msgstr "Vy" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3776,7 +3777,7 @@ msgstr "Struktur" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3802,9 +3803,9 @@ msgstr "Lägg till" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegier" @@ -3866,9 +3867,9 @@ msgid "Central columns" msgstr "Textarea kolumner" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Databaser" @@ -3976,7 +3977,7 @@ msgid "Recent" msgstr "Senaste" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Favorittabeller" @@ -4047,7 +4048,7 @@ msgstr "Sortering" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4417,16 +4418,16 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Ett litet flyttal. Tillåtna värden är: 3.402823466E+38 till-1.175494351E-38, " "0, och 1.175494351E-38 till 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Ett dubbel-precision flyttal. Tillåtna värden är: 1.7976931348623157E+308 " @@ -4719,7 +4720,7 @@ msgstr "Max: %s%s" msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Förklara SQL-kod" @@ -4731,7 +4732,7 @@ msgstr "Utan SQL-förklaring" msgid "Without PHP Code" msgstr "Utan PHP-kod" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Skapa PHP-kod" @@ -4844,13 +4845,13 @@ msgstr "Beskrivning" msgid "Use this value" msgstr "Använd detta värde" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5251,7 +5252,7 @@ msgid "Set value: %s" msgstr "Ange värde: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Återställ standardvärde" @@ -5379,9 +5380,9 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Om du känner att det är nödvändigt, använd extra skyddsinställningar - %" -"shost authentication%s-inställningar och %strusted proxies list%s. Dock kan " -"IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP som " +"Om du känner att det är nödvändigt, använd extra skyddsinställningar - " +"%shost authentication%s-inställningar och %strusted proxies list%s. Dock " +"kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP som " "tusentals användare, inklusive dig, är anslutna till." #: libraries/config/ServerConfigChecks.class.php:434 @@ -5677,23 +5678,35 @@ msgstr "Flik som visas när du går till en tabell." msgid "Default table tab" msgstr "Förvald tabellflik" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Använd citattecken runt tabell- och fältnamn" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Använd citattecken runt tabell- och fältnamn" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Om tabellstrukturåtgärderna ska döljas eller inte." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Dölj åtgärder för tabellstruktur" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Visa serverlista som en lista istället för en drop-down." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Visa servrar som en lista" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5701,11 +5714,11 @@ msgstr "" "Inaktivera mängdoperationer för tabellunderhåll, som att optimera eller " "reparera de valda tabellerna i en databas." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Inaktivera underhåll av multipla tabeller" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5713,39 +5726,39 @@ msgstr "" "Ange antalet sekunder ett skript får köras ([kbd]0[/kbd] för ingen " "begränsning)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maximal exekveringstid" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Lägg till uppgiften %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Spara som fil" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Filens teckenuppsättning" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Komprimering" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5755,60 +5768,60 @@ msgstr "Komprimering" msgid "Put columns names in the first row" msgstr "Sätt kolumnnamn på första raden" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Kolumner omges av" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Specialtecken i fält föregås av" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Ersätt NULL med" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Ta bort CRLF-tecken i kolumner" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Kolumner avslutas med" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Rader avslutas med" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel-version" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Mall för databasnamn" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Mall för servernamn" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Mall för tabellnamn" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5817,139 +5830,139 @@ msgstr "Mall för tabellnamn" msgid "Dump table" msgstr "Dumpa tabell" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Inkludera tabellbeskrivning" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Tabellrubrik" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Fortsatt tabellrubrik" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Märk nyckel" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-typ" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Relationer" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Exportmetod" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Spara på server" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Skriv över befintlig(a) fil(er)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Kom ihåg mall för filnamn" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Lägg till AUTO_INCREMENT-värde" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Använd citattecken runt tabell- och fältnamn" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitetsläge" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE-alternativ:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Skapad/Uppdaterad/Kontrollerad datum" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Använd fördröjda inläggningar" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Inaktivera kontroller av främmande nycklar" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Exportera vyer som tabeller" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Lägg till %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "Använd hexadecimalt för BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Använd ignore i inläggningar" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Syntax att använda när man infogar data" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Maximal längd på skapad fråga" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Export-typ" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Bifoga export i en transaktion" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Exportera tid i UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Tvinga säker anslutning när du använder phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Tvinga SSL-anslutning" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5957,142 +5970,142 @@ msgstr "" "Sorteringsordning för poster i en främmande nyckel-listruta; [kbd]innehåll[/" "kbd] är refererad data, [kbd]id[/kbd] är nyckelvärdet." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Ordning i främmande nyckel-listruta" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "En listruta kommer användas om färre objekt finns." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Begränsning för främmande nyckel" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Utforskningsläge" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Anpassa utforskningsläge." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Anpassa förvalda alternativ." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Utvecklare" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Inställningar för phpMyAdmin-utvecklare." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Redigeringsläge" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Anpassa redigeringsläge." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Exportera standardvärden" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Anpassa standardexportalternativ." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funktioner" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Allmänt" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Välj några av de vanligaste alternativen." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Importera standardvärden" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Anpassa standardalternativ för import." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Importera / exportera" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Ange kataloger för import och export och komprimeringsalternativ." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Visningsalternativ för databaser." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Navigationspanel" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Anpassa navigationspanelens utseende." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Servrar" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Visningsalternativ för servrar." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Visningsalternativ för tabeller." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Huvudpanel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Andra grundinställningar" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Inställningar som inte passade någon annanstans." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Sidtitlar" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6100,19 +6113,19 @@ msgstr "" "Ange webbläsarens namnlisttext. Se [doc@cfg_TitleTable]dokumentationen[/doc] " "för magiska strängar som kan användas för att få speciella värden." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Sökfönster" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Anpassa alternativ för sökfönster" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Säkerhet" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -6120,23 +6133,23 @@ msgstr "" "Observera att phpMyAdmin endast är ett användargränssnitt och dess " "funktioner inte begränsar MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Grundläggande inställningar" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Verifiering" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Autentiseringsinställningar." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Serverkonfiguration" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6144,15 +6157,15 @@ msgstr "" "Avancerad serverkonfiguration, ändra inte dessa alternativ om du inte vet " "vad de är till för." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Ange parametrar för anslutning till server." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Konfigurationslagring" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6162,118 +6175,118 @@ msgstr "" "ytterligare funktionalitet, se [doc@linked-tables]konfigurationslagring för " "phpMyAdmin[/doc] i dokumentationen." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Förändringar i spårning" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" "Spårning av ändringar i databasen. Kräver phpMyAdmin konfigurations lagring." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Anpassa exportalternativ" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Anpassa standardvärden för import" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Anpassa navigeringspanelen" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Anpassa huvudpanelen" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL-frågor" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL-frågeruta" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Anpassa länkar som visas i SQL-frågerutor." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Inställningar för SQL-frågor." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Uppstart" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Anpassa startsidan." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Databasstruktur" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "Välj vilka detaljer som ska visas i databasstrukturen (tabellista)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Tabellstruktur" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Inställningar för tabellstrukturen (kolumnlista)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Flikar" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Välj hur du vill att flikar ska fungera." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Visa relationsschema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Pappersstorlek" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Textfält" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Anpassa textfält." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Anpassa förvalda alternativ" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Varningar" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Inaktivera några av de varningar som visas av phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6281,15 +6294,15 @@ msgstr "" "Aktivera [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a]-komprimering för " "import- och exportoperationer." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Extra parameterar för iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6297,11 +6310,11 @@ msgstr "" "Om aktiverat fortsätter phpMyAdmin att utföra fleruttrycksfrågor även om en " "av frågorna misslyckades." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ignorera fel i fleruttrycksfrågor" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6311,28 +6324,28 @@ msgstr "" "tidsbegränsningen. Detta kan vara ett bra sätt att importera stora filer, " "men det kan bryta transaktioner." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Partiell import: tillåt avbrott" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Inaktivera kontroller av främmande nycklar" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Avbryt inte vid INSERT-fel" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Ersätt tabelldata med fil" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6340,68 +6353,68 @@ msgstr "" "Standardformat; observera att denna lista beror på plats (databas, tabell) " "och endast SQL är alltid tillgängligt." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Format på importerad fil" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Använd nyckelordet LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Kolumnnamn på första raden" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Importera inte tomma rader" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importera valutor ($5,00 till 5,00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importera procenttal med riktiga decimaler (12,00% till .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Antal förfrågningar att hoppa från start." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Partiell import: hoppa över frågor" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Använd inte AUTO_INCREMENT för nollvärden" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Utgångsläge för reglagen" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Hur många rader som kan infogas på en gång." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Antal infogade rader" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Maximalt antal tecken som visas i icke-numeriska kolumner i bläddringsvyn." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Begränsa antalet tecken i kolumn" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6411,11 +6424,11 @@ msgstr "" "sker utloggning endast för aktuell server. Satt till FALSE gör det lätt att " "glömma att logga ut från andra servrar när du är ansluten till flera servrar." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Radera alla cookies vid utloggning" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6423,11 +6436,11 @@ msgstr "" "Ange om den tidigare inloggningen ska återkallas eller inte vid [kbd]cookie[/" "kbd]-autentiseringsläge." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Återkalla användarnamn" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6439,48 +6452,48 @@ msgstr "" "session, och kommer tas bort så snart webbläsaren stängs. Detta är " "rekommenderat för icke tillförlitliga miljöer." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Lagringsplats för inloggnings-cookie" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Anger hur lång tid (i sekunder) som en inloggnings-cookie är giltig." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Giltighet för inloggnings-cookie" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Dubbel storlek på textområdet för LONGTEXT-kolumner." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Större textarea för LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "Maximalt antal tecken som används när en SQL-fråga visas." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Maximal visad SQL-längd" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Användare kan inte ange ett högre värde" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Maximalt antal databaser som visas i databaslistan." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Maximalt antal databaser" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6488,21 +6501,21 @@ msgstr "" "Antalet objekt som kan visas på varje sida på den första nivån av " "navigationsträdet." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Maximalt antal objekt på första nivån" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "Antalet objekt som kan visas på varje sida i navigationsträdet." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Maximalt antal objekt i gren" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6510,19 +6523,19 @@ msgstr "" "Antal rader som visas vid visning av resultat. Om resultatet innehåller fler " "rader, visas länkar för \"Föregående\" och \"Nästa\"." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Maximalt antal rader att visa" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Maximalt antal tabeller som visas i tabellista." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maximalt antal tabeller" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6530,41 +6543,41 @@ msgstr "" "Antal byte som ett skript har tillåtelse att allokera, t.ex. [kbd]32M[/kbd] " "([kbd]0[/kbd] för ingen begränsning)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Minnesgräns" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Visa dolda navigationsträdsobjekt." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Visa logotyp i navigationspanelens." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Visa logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL som navigationspanelens logotyp pekar mot." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Länkadress för logo" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6572,29 +6585,29 @@ msgstr "" "Öppna den länkade sidan i huvudfönstret ([kbd]main[/kbd]) eller i ett nytt " "([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Mål för logo-länk" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Visa val av server högst upp i navigationspanelen." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Visa serverval" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Mål för snabbåtkomst-ikon" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Mål för snabbåtkomst-ikon" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6602,15 +6615,15 @@ msgstr "" "Definierar minsta antal objekt (tabeller, vyer, rutiner och händelser) för " "att visa en filterbox." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Minsta antal objekt för att visa filterboxen" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Minsta antal databaser för att visa filterboxen för databaser" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6618,97 +6631,97 @@ msgstr "" "Grupperar objekt i navigationsträdet (bestäms av avskiljaren definierad " "nedan)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Gruppera objekt i trädet" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Sträng som separerar databaser i olika trädnivåer." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Avskiljare för databasträd" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Sträng som separerar tabeller i olika trädnivåer." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Avskiljare för tabellträd" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Max djup i tabellträd" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Markera server under muspekaren." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Aktivera framhävning" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Huruvida möjligheten för databasexpansion ska inaktiveras eller inte." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Tabellbaserat navigeringsfält" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Maximalt antal nyligen använda tabeller, ange 0 för att inaktivera." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Maximalt antal favorittabeller, ange 0 för att inaktivera." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Nyligen använda tabeller" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Dessa är länkar till Redigera, Kopiera och Radera." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Var länkarna i tabellraden visas" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Naturlig ordning" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Använd enbart ikoner, endast text eller både och." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Tabellbaserat navigeringsfält" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip Utmatningsbuffer" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6716,19 +6729,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Förvald sorteringsordning" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Använd bestående anslutningar till MySQL-databaser." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Bestående anslutningar" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6738,11 +6751,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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Saknade phpMyAdmin konfiguration lagringstabeller" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6750,11 +6763,11 @@ msgstr "" "Inaktivera standardvarningen som visas om en skillnad mellan MySQL-" "biblioteket och servern upptäcks." -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Varning för skillnad server/bibliotek" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6762,27 +6775,27 @@ msgstr "" "Inaktivera standardvarningen som visas på sidan Struktur om kolumnnamn i en " "tabell är reserverade MySQL-ord." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Varning för reserverat MySQL-ord" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Hur att visa menyflikarna" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Hur man visar olika åtgärdslänkar" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Tillåt ej redigering av BLOB- och BINARY-kolumner." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Skydda binära kolumner" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6792,129 +6805,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Permanent frågehistorik" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Antal frågor som sparas i historiken." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Längd på frågehistorik" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Omvandlingsmotor" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Kom ihåg tabellens sortering" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Förvald sorteringsordning" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Reparera rubriker" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Rutnäts-redigering: utlösningsåtgärd" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Kolumn för besläktad nyckel" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Visningsalternativ för servrar." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Rutnäts-redigering: spara alla redigerade celler omedelbart" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Katalog där exporter kan sparas på servern." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Sparningskatalog" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Lämna tomt om den inte används." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Host auktorisation för" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Lämna blankt för standardvärden." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Behörighetsregler för host" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Tillåt inloggning utan lösenord" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Tillåt root-inloggning" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Sessionsvärde" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6924,19 +6937,19 @@ msgstr "" "hårdvaruautentisering[/a] (inte placerad i din dokumentrotkatalog; förslag: /" "etc/swekey.conf)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey konfigurationsfil" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Autentiseringsmetod att använda." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Autentiseringstyp" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6944,11 +6957,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Tabell för bokmärken" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6956,31 +6969,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Tabell för kolumninformation" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Komprimera anslutning till MySQL-servern." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Komprimera anslutning" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Anslutningstyp" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Lösenord för kontrollanvändare" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6989,11 +7002,11 @@ msgstr "" "information tillgänglig på [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" "[/a]." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Kontrollanvändare" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -7001,11 +7014,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:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Kontrollvärd" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -7015,15 +7028,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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Kontrollport" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Dölj databaser som matchar reguljärt uttryck (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7031,15 +7044,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Inaktivera användning av INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Dölj databaser" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -7047,23 +7060,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:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Tabell för SQL-frågehistorik" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Värdnamn där MySQL-servern körs." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Serverns värdnamn" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL för utloggning" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -7071,17 +7084,17 @@ msgstr "" "Begränsar antalet tabellpreferenser som lagras i databasen, de äldsta " "posterna tas bort automatiskt." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Maximalt antal tabellinställningar att spara" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "Se slavtabell status" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7093,13 +7106,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:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns table" msgstr "Textarea kolumner" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7111,15 +7124,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:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Försök ansluta utan lösenord." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Anslut utan lösenord" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7129,30 +7142,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Visa endast listade databaser" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Lämna tomt om inte config auth används." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Lösenord för config auth" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF-schema: Tabell för sidor" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7162,20 +7175,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Databasnamn" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Serverport" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7183,11 +7196,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Nyligen använd tabell" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7199,13 +7212,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:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Favorittabeller" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7213,11 +7226,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Relationstabell" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7225,31 +7238,31 @@ msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/" "a] för ett exempel." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Signon sessionsnamn" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Inloggnings-URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Aktivera SSL för anslutning till MySQL-servern." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Använd SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7257,13 +7270,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:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF-schema: tabellkoordinater" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7271,11 +7284,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Visa tabellkolumner" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7284,11 +7297,11 @@ msgstr "" "användargränssnittspreferenser som sparas över sessioner, förslag: [kbd]" "pma__table_uiprefs[/kbd]." -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Tabell för inställningar av användargränssnittet" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7296,11 +7309,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Lägg till DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7308,11 +7321,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Lägg till DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7320,21 +7333,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Lägg till DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Kommandon att spåra" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7342,11 +7355,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:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL-frågespårningstabell" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7354,11 +7367,11 @@ msgstr "" "Huruvida spårningsmekanismen skapar versioner för tabeller och vyer " "automatiskt." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Skapa versioner automatiskt" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7366,11 +7379,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Lagringstabell för användarinställningar" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7380,11 +7393,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Användartabell" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7394,11 +7407,11 @@ msgstr "" "anpassningsbara menyer; om en av dem lämnas tom inaktiveras funktionen, " "förslag: [kbd]pma__usergroups[/kbd]." -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Användargruppstabell" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7406,15 +7419,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Tabell för dolda navigationsobjekt" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Användare för config auth" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7422,19 +7435,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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Beskrivande namn för denna server" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Tillåt att visa alla rader" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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,73 +7457,73 @@ 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Visa ändra lösenord-formulär" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Visa skapa databas-formulär" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Visa tidsstämpel för skapande" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Visa tidstämpeln Senaste uppdatering" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Visa tidstämpeln Senaste kontroll" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Visa fälttyper" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Visa funktionsfälten i ändra/infoga-läge." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Visa funktionsfält" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Huruvida tips ska visas eller inte." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Visa tips" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7518,60 +7531,60 @@ msgstr "" "Visar länk till resultatet av [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Visa phpinfo()-länk" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Visa detaljerad MySQL-serverinformation" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Visa SQL-frågor" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Behåll frågerutan" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Visa statistik" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Hoppa över låsta tabeller" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "En varning visas på huvudsidan om Suhosin upptäcks." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin-varning" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7584,13 +7597,13 @@ msgstr "" "Inaktivera standardvarningen som visas på sidan Struktur om kolumnnamn i en " "tabell är reserverade MySQL-ord." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Giltighet för inloggnings-cookie" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7598,11 +7611,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:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Textarea kolumner" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7610,31 +7623,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:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Textarea rader" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Standardtitel" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7646,27 +7659,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Lista med betrodda proxies för IP allow/deny" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Uppladdningskatalog" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Tillåt sökning i hela databasen." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Använd databassökning" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7674,26 +7687,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Aktivera fliken Utvecklare i inställningar" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Sök efter senaste version" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "Aktivera kontroll efter senaste version på phpMyAdmins hemsida." -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7705,11 +7718,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:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Proxy-url" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7719,19 +7732,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Proxyanvändarnamn" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Lösenordet för autentisering med proxy." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Proxylösenord" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7739,53 +7752,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Publik nyckel för reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Privat nyckel för reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "Välj standardhandling vid sändande av felrapporter." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Skicka felrapporter" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "Utförda frågor" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7807,44 +7820,44 @@ msgstr "HTTP-autentisering" msgid "Signon authentication" msgstr "Signon-autentisering" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV med LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "OpenDocument-kalkylblad" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Snabb" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Anpassad" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Exportalternativ för databas" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV för MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument-text" @@ -8075,20 +8088,20 @@ msgstr "Kan inte räkna rader i en obuffrad resultatmängd" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Inget lösenord" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Lösenord:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Skriv igen:" @@ -8226,8 +8239,8 @@ msgstr ", @TABLE@ kommer bli tabellnamnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med " "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " @@ -8793,11 +8806,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%" -"s." +"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" +"%s." #: libraries/engines/pbxt.lib.php:138 msgid "Related Links" @@ -9262,7 +9275,7 @@ msgstr "Logga ut" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-dokumentation" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Ladda om navigeringspanel" @@ -9931,11 +9944,11 @@ msgstr "Välkommen till %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1" -"$suppsättningsskript%2$s för att skapa denna." +"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda " +"%1$suppsättningsskript%2$s för att skapa denna." #: libraries/plugins/auth/AuthenticationConfig.class.php:144 msgid "" @@ -10163,7 +10176,7 @@ msgstr "Sätt kolumnnamn på första raden:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Värd:" @@ -11214,22 +11227,22 @@ msgstr "" "inte, lägg till följande rad i [mysqld]-sektionen:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Användarnamn:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Användarnamn" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Lösenord" @@ -11257,10 +11270,10 @@ msgstr "Server ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Värd" @@ -11273,38 +11286,38 @@ msgstr "" "Endast slavar startade med valet --report-host=host_name syns i denna lista." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Vilken värd som helst" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Denna värd" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Vilken användare som helst" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Använd textfältet:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Använd värdtabell" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11313,7 +11326,7 @@ msgstr "" "värdtabellen används istället." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Skriv igen" @@ -12044,7 +12057,7 @@ msgstr "Inget" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Användargrupp" @@ -12114,14 +12127,14 @@ msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Obs: privilegienamn i MySQL uttrycks på engelska." @@ -12130,7 +12143,7 @@ msgid "Administration" msgstr "Administration" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Globala privilegier" @@ -12139,7 +12152,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" @@ -12158,18 +12171,18 @@ msgstr "" "Tillåter inläggning av användare och privilegier utan omladdning av " "privilegietabeller." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Inloggningsinformation" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Använd textfältet" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -12177,125 +12190,125 @@ msgstr "" "Ett konto existerar redan med samma användarnamn men möjligen ett annat " "värdnamn." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Ändra inte lösenordet" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Lösenordet för %s har ändrats." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Du har upphävt privilegierna för %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Lägg till en användare" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Databas för användare" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Skapa databas med samma namn och tilldela alla privilegier." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Bevilja alla privilegier till namn med jokertecken (username\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Bevilja alla privilegier för databas \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Användare som har tillgång till \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "En användare har skapats." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Användare" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Bevilja" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Ingen användare hittades." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Vem som helst" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "databasspecifik" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "jokertecken" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "tabellspecifik" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Ändra privilegier" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Upphäv" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Redigera användargrupp" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… behåll den gamla." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… ta bort den gamla från användartabellerna." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… upphäv alla aktiva privilegier från den gamla och ta bort den efteråt." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12303,120 +12316,120 @@ msgstr "" "… ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Ändra inloggningsinformation / Kopiera användare" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Skapa en ny användare med samma privilegier och …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Kolumnspecifika privilegier" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Lägg till privilegier till följande databas(er):" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Jokertecknen _ och % måste föregås av ett \\ för att användas i egentlig " "betydelse." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Lägg till privilegier till följande tabell:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Ta bort valda användare" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Upphäv alla aktiva privilegier från användarna och ta bort dem efteråt." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Ta bort databaserna med samma namn som användarna." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Inga användare valda för borttagning!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Laddar om privilegierna" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "De valda användarna har tagits bort." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har uppdaterat privilegierna för %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Tar bort %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Användaren %s finns redan!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Privilegier för %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Ny" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Ändra privilegier:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Användaröversikt" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Anm: phpMyAdmin hämtar användarnas behörigheter direkt från MySQL's " "behörighetstabeller. Innehållet i dessa tabeller kan skilja sig från de " "behörigheter servern använder, om manuella ändringar har gjorts. Är så " "fallet bör du %sladda om behörigheterna%s innan du fortsätter." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Den valda användaren kunde inte hittas i privilegietabellen." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Du har lagt till en ny användare." @@ -14237,21 +14250,21 @@ msgstr "Cachestorlek för index" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indextyp:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Användare:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Kommentar:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15298,8 +15311,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Det nuvarande förhållandet mellan ledigt frågecacheminne den totala fråge " "cache-storlek är %s%%. Det bör vara över 80%%" @@ -15450,8 +15463,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% av alla sorteringar orsakar tillfälliga tabeller, detta värde bör vara " "lägre än 10%%." @@ -17568,8 +17581,8 @@ msgstr "concurrent_insert är satt till 0" #~ "The result of this query can't be used for a chart. See [doc@faq6-29]FAQ " #~ "6.29[/doc]" #~ msgstr "" -#~ "Resultatet av denna fråga kan inte användas för ett diagram. Se [doc@faq6-" -#~ "29]FAQ 6.29[/doc]" +#~ "Resultatet av denna fråga kan inte användas för ett diagram. Se " +#~ "[doc@faq6-29]FAQ 6.29[/doc]" #~ msgid "Title" #~ msgstr "Titel" diff --git a/po/ta.po b/po/ta.po index e66de17de4..adbe8977f7 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,15 +6,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-02 19:02+0200\n" "Last-Translator: கணேஷ் குமார் \n" "Language-Team: Tamil \n" +"Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.3-dev\n" @@ -68,7 +68,7 @@ msgstr "அட்டவணைக் கருத்துரைகள்:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "நிரல்வரிசை" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "இணைப்புகள்" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "முதன்மை" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "இல்லை" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -262,14 +262,14 @@ msgid "" msgstr "PhpMyAdmin கட்டமைப்பு சேமிப்பகம் முடக்கப்பட்டுள்ளது. %sஏனென்று அறிக%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "அட்டவணை" @@ -282,7 +282,7 @@ msgid "Rows" msgstr "நிரைவரிசைகள்" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "அளவு" @@ -374,9 +374,9 @@ msgstr "நிகழ்நிலை" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -573,15 +573,15 @@ msgstr "வரையமைப்பை சேர்க்க" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -614,8 +614,8 @@ msgstr "முழுமையடையா மதிப்புருபுக #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "நீங்கள் பதிவேற்ற முயன்ற கோப்பு மிகப்பெரியதாக இருக்கலாம். இவ்வரம்பின் மாற்ற தயவுசெய்து %s " "ஆவணஉரையை %s பார்வையிடவும்." @@ -701,7 +701,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "பின்செல்க" @@ -725,7 +725,7 @@ msgid "General Settings" msgstr "பொதுவான அமைவுகள்" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றவும்" @@ -800,7 +800,7 @@ msgstr "பதிப்பு தகவல்கள்:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "ஆவணச்சான்று" @@ -936,8 +936,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"வழங்கி SUSHOSIN உடன் இயங்குகிறது. நிகழக்கூடிய பிழைமுறைகளுக்கு தயவுசெய்து %" -"sஆவணச்சான்றை%s காண்க." +"வழங்கி SUSHOSIN உடன் இயங்குகிறது. நிகழக்கூடிய பிழைமுறைகளுக்கு தயவுசெய்து " +"%sஆவணச்சான்றை%s காண்க." #: js/messages.php:29 libraries/import.lib.php:125 sql.php:143 msgid "\"DROP DATABASE\" statements are disabled." @@ -1066,7 +1066,7 @@ msgstr "சுட்டுதொகுப்புக்குறி சேர msgid "Edit Index" msgstr "சுட்டுதொகுப்புக்குறி திருத்துக" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "%s நிரல்வரிசை(களை) சுட்டுதொகுப்புக்குறியில் சேர்க்க" @@ -1093,7 +1093,7 @@ msgstr "நீங்கள் குறைந்தது ஒரு நெடு #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "SQLஐ முன்பார்வையிடு" @@ -1122,12 +1122,12 @@ msgstr "வழங்கியின் பெயர் வெறுமையா msgid "The user name is empty!" msgstr "பயனர் பெயர் வெறுமையாக உள்ளது!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "கடவுச்சொல் வெறுமையாக உள்ளது!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "கடவுச்சொற்கள் பொருந்தவில்லை!" @@ -1328,7 +1328,7 @@ msgstr "தயவுசெய்து குறைந்தது ஒரு ம #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1616,7 +1616,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1827,7 +1827,7 @@ msgstr "வினவல் பெட்டியை காண்பி" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2074,7 +2074,7 @@ msgstr "தரவுப்புள்ளி உள்ளடக்கம்" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "புறக்கணி" @@ -2253,7 +2253,7 @@ msgstr "நிரல்வரிசையின் காட்சிப்ப #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "அனைத்தையும் காட்டு" @@ -2347,7 +2347,7 @@ msgstr "பலகத்தை மறை" msgid "Show hidden navigation tree items." msgstr "மறைத்துள்ள வழிசெலுத்தல் படிமுறை உருப்படிகளை காண்பி." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "முதன்மை பலகத்துடன் இணைக்க" @@ -2851,16 +2851,16 @@ msgid "Delete" msgstr "அழி" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2977,7 +2977,7 @@ msgid "During current session" msgstr "அமர்வின் போது" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3352,8 +3352,8 @@ msgstr "உங்கள் SQL வினவல் வெற்றிகரமா #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "இவ்விவரபார்வை குறைந்தளவு இத்தனை நிரைவரிசைகள் கொண்டிருக்கலாம். %sஆவணச்சான்றை%s காண்க." @@ -3389,6 +3389,7 @@ msgstr "உடன் தெரிவுசெய்யப்பட்டது:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3404,12 +3405,12 @@ msgstr "மாற்று" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3596,7 +3597,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "வழங்கி" @@ -3611,11 +3612,11 @@ msgstr "நோக்கு" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3631,7 +3632,7 @@ msgstr "கட்டமைப்பு" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3657,9 +3658,9 @@ msgstr "செருகு" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3719,9 +3720,9 @@ msgid "Central columns" msgstr "மைய நெடுவரிசைகள்" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "தரவுத்தளங்கள்" @@ -3829,7 +3830,7 @@ msgid "Recent" msgstr "அண்மையில்" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "விருப்பமான அட்டவணைகள்" @@ -3900,7 +3901,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4247,14 +4248,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4502,7 +4503,7 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL சொன்னது: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4514,7 +4515,7 @@ msgstr "" msgid "Without PHP Code" msgstr "PHP நிரல் இல்லாமல்" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP குறிமுறை உருவாக்கு" @@ -4627,13 +4628,13 @@ msgstr "சிறுகுறிப்பு" msgid "Use this value" msgstr "இம்மதிப்பை பயன்படுத்துக" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5024,7 +5025,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5380,71 +5381,79 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "அட்டவணை வடிவாக்க செயல்களை மறைக்கவா." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "தரவுதள வடிவமைப்பு நடவடிக்கைகளை மறை" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add statements:" msgid "Use %s statement" msgstr "கூற்றுகளை சேர்க்க:" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "கோப்பாக சேமிக்க" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5454,60 +5463,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5516,565 +5525,565 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "விவரபார்வையை அட்டவணையாக தரவாக்குக" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "பயன்முறைகள்" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "தரவிறக்கம் / தரவேற்றம்" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "தரவுத்தளங்களின் காட்சித்தெரிவுகள்." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "வழிசெலுத்தல் பலகம்" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "அட்டவணைகளின் காட்சித்தெரிவுகள்." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "முதன்மை பலகம்" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "வினவல் சாளரம்" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "வினவல் சாளர விருப்பங்களை தனிப்பயனாக்குக" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "உறுதிப்படுத்தல்" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "உறுதிப்பாடு அமைப்புமுறைமை." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "வழங்கியுடன் இணைவதற்கான அளவுருக்களை இடுக." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "வழிசெலுத்தல் பலகத்தை தனிப்பயனாக்குக" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL வினவல்கள்" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL வினவல் அமைவுகள்." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "தரவுத்தளக் கட்டமைப்பு" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "தரவுத்தளங்கள்->அட்டவணை கட்டமைப்பு" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "உரை கலம்" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "உரைஉள்ளிடல் களங்களை தனிபயனாக்குக." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "எச்சரிக்கைகள்" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "சுழிய மதிப்புகளுக்கு AUTO_INCREMENT(தன்னிலைகூட்டு) பயன்படுத்த வேண்டாம்" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6086,21 +6095,21 @@ msgstr "" "சேவையகங்களுடன் இணைத்திருக்கும்போது இதை FALSEஆக அமைத்தால் எளிதில் மற்ற சேவையகங்களிருந்து " "செல்பதிகை செய்வதை மறக்க நேரிடலாம்." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6108,1058 +6117,1058 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "புகுபதிவு நிலைபதிவுத்துணுக்கு சேமிப்பகம்" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "புகுபதிவு நிலைபதிவுத்துணுக்கு செல்லுங்காலம்" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "மறைத்துள்ள வழிசெலுத்தல் படிமுறை உருப்படிகளை காண்பி." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "வழிசெலுத்தல் பலகத்தில் இலச்சினையை காட்டுக." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "சின்னத்தை காட்டுக" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "அட்டவணை வழிசெலுத்தல் பட்டி" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "அட்டவணை வழிசெலுத்தல் பட்டி" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "முதனிலை குறிப்பெழுத்தின் முன்னிருப்பு அடுக்குமுறை" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "தொடர்புடை நிரல்வரிசை காண்பிக்க" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Tables display options." msgid "For display Options" msgstr "அட்டவணைகளின் காட்சித்தெரிவுகள்." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "root புகுபதிவை ஏற்க" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "அமர்வு மதிப்பு" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "உறுதிப்படுத்துதல் பயன்முறைமை." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "சுருங்குறிக்கு பொருந்தும் தரவுத்தளங்களை மறைக்க (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns table" msgstr "மைய நெடுவரிசைகள்" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "விருப்பமான அட்டவணைகள்" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "பயனர் அட்டவணை" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "செயல்கூற்றின் களங்களை காட்டுக" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "phpMyAdminஆல் உருவாக்கபட்ட SQL வினவல் காட்டப்படவேண்டுமா என்பதை வரையறுக்கிறது." -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "SQL வினவல்களை காட்டுக" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "வினவல் பெட்டியை வைத்திருக்க" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "புகுபதிவு நிலைபதிவுத்துணுக்கு செல்லுங்காலம்" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "உரைக்கட்ட நெடுவரிசைகள்" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -7167,52 +7176,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "புதிய பதிப்பை பார்வையிடவும்" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 msgid "" "The url of the proxy to be used when retrieving the information about the " "latest version of phpMyAdmin or when submitting error reports. You need this " @@ -7220,80 +7229,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "பயனாளர்:->பதிலி பயனர் பெயர்" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "பதிலி கடவுச்சொல்" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "அமைப்பாக்கம் இல்லா முறைமையை இயலசெய்க" @@ -7313,44 +7322,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "கட்டற்றஆவண உரை" @@ -7562,20 +7571,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "கடவுச்சொல்:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "மீண்டும் உள்ளிடு:" @@ -7710,8 +7719,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8205,8 +8214,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8663,7 +8672,7 @@ msgstr "செல்பதிகை" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin ஆவணச்சான்று" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "வழிசெலுத்தல் பலகத்தை மீளேற்று" @@ -9303,8 +9312,8 @@ msgstr "%sக்கு வருக" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "நீங்கள் அமைப்பாக்க கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$sநிரல்கோவையை%2$s " "பயன்படுத்த வேண்டும்." @@ -9534,7 +9543,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10444,22 +10453,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "பயனர் பெயர்:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10487,10 +10496,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10502,45 +10511,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "உரைபுலத்தின் மூலமாக:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11257,7 +11266,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11324,14 +11333,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11340,7 +11349,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11349,7 +11358,7 @@ msgid "Global" msgstr "உலகளாவிய" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11366,253 +11375,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "புகுபதிவு தகவல்" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "பயனரை சேர்" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "பயனர் குழுவை தொகுக்க" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "பின்வரும் தரவுத்தள(ங்களின்)த்தின் மீதான தனிச்சலுகைகளை சேர்க்க:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "பின்வரும் அட்டவணையின் மீதான தனிச்சலுகையை சேர்க்க:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "புதியது" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "புதிய பயனாளரை சேர்க்க->தனிச்சலுகையை தொகுக்க:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "பயனர்கள் கண்ணோட்டம்" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்." @@ -13217,21 +13226,21 @@ msgstr "சுட்டுதொகுப்புக்குறி பெய msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "சுட்டுதொகுப்புக்குறி வகை:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "பயனர்:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "கருத்துரை:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -13486,8 +13495,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" -"உங்கள் முன்னுரிமைகள் இந்த அமர்வுக்காக மட்டும் சேமிக்கப்படும். அவற்றை நிலையாக சேமிப்க்க %" -"sphpMyAdmin அமைப்பாக்க நினைவகம்%s தேவை." +"உங்கள் முன்னுரிமைகள் இந்த அமர்வுக்காக மட்டும் சேமிக்கப்படும். அவற்றை நிலையாக சேமிப்க்க " +"%sphpMyAdmin அமைப்பாக்க நினைவகம்%s தேவை." #: libraries/user_preferences.lib.php:130 msgid "Could not save configuration" @@ -13562,8 +13571,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"நீங்கள் config.inc.phpஐ மாற்றுவதன் மூலம் மேலும் அதிக அமைவுகளை அமைக்கலாம், எகா. %" -"sநிறுவல்கோவை%s மூலம்." +"நீங்கள் config.inc.phpஐ மாற்றுவதன் மூலம் மேலும் அதிக அமைவுகளை அமைக்கலாம், எகா. " +"%sநிறுவல்கோவை%s மூலம்." #: prefs_manage.php:321 msgid "Save to browser's storage" @@ -14191,8 +14200,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14310,8 +14319,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/te.po b/po/te.po index 95ca4e5077..e000690613 100644 --- a/po/te.po +++ b/po/te.po @@ -6,15 +6,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-02-27 10:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Telugu \n" +"Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: te\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.9-dev\n" @@ -70,7 +70,7 @@ msgstr "పట్టిక వ్యాఖ్యలు:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -94,7 +94,7 @@ msgstr "వరుస" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -150,8 +150,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -180,13 +180,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -209,13 +209,13 @@ msgstr "కాదు" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -268,14 +268,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "పట్టిక" @@ -288,7 +288,7 @@ msgid "Rows" msgstr "వరుసలు" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "పరిమాణం" @@ -391,9 +391,9 @@ msgstr "స్థితి" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -599,15 +599,15 @@ msgstr "క్రొత్త వాడుకరిని చేర్చు" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -640,8 +640,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -715,7 +715,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "వెనుకకి" @@ -736,7 +736,7 @@ msgid "General Settings" msgstr "సాధారణ అమరికలు" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "సంకేతపదాన్ని మార్చు" @@ -831,7 +831,7 @@ msgstr "సంచిక సమాచారం" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "పత్రావళి" @@ -1063,7 +1063,7 @@ msgid "Edit Index" msgstr "క్రొత్త వాడుకరిని చేర్చు" # మొదటి అనువాదము -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s) to index" @@ -1101,7 +1101,7 @@ msgstr "మీరు క్రొత్త వినియోగదారున #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1137,12 +1137,12 @@ msgstr "" msgid "The user name is empty!" msgstr "వాడుకరి పేరులో ఏమీ లేదు!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "సంకేతపదం ఖాళీగా ఉంది!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" @@ -1351,7 +1351,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1659,7 +1659,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1903,7 +1903,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2171,7 +2171,7 @@ msgstr "విషయ సూచిక" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2355,7 +2355,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "అన్నీ చూపించు" @@ -2464,7 +2464,7 @@ msgid "Show hidden navigation tree items." msgstr "చూపించు" # మొదటి అనువాదము -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Hide/Show all" @@ -2983,16 +2983,16 @@ msgstr "తొలగించు" # మొదటి అనువాదము #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3126,7 +3126,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3574,8 +3574,8 @@ msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3611,6 +3611,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3627,12 +3628,12 @@ msgstr "మార్చుము" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3825,7 +3826,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3841,11 +3842,11 @@ msgstr "చూపుము" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3861,7 +3862,7 @@ msgstr "నిర్మాణాకృతి" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3888,9 +3889,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3952,9 +3953,9 @@ msgid "Central columns" msgstr "పట్టిక వ్యాఖ్యలు" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -4084,7 +4085,7 @@ msgstr "పట్టికను సృష్టించు" # మొదటి అనువాదము #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgctxt "short form" #| msgid "Create table" @@ -4164,7 +4165,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4538,14 +4539,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4802,7 +4803,7 @@ msgstr "గరిష్ఠం: %s%s" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4814,7 +4815,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4933,13 +4934,13 @@ msgstr "వివరణ" msgid "Use this value" msgstr "ఈ విలువని ఉపయోగించు" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5356,7 +5357,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5718,78 +5719,86 @@ msgstr "" msgid "Default table tab" msgstr "" -# మొదటి అనువాదము +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +# మొదటి అనువాదము +#: libraries/config/messages.inc.php:97 #, fuzzy #| msgid "Database" msgid "Whether the table structure actions should be hidden." msgstr "డేటాబేస్" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Database" msgid "Hide table structure actions" msgstr "డేటాబేస్" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add into comments" msgid "Use %s statement" msgstr "స్పందనలకు చేర్చు" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5799,60 +5808,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5861,619 +5870,619 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "సంబంధాలు" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "ఎగుమతి పద్ధతి" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Table name" msgid "Export views as tables" msgstr "పట్టిక పేరు" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s జతచేయి" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "ఎగుమతి రకం" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "విశేషాలు" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "సాధారణ" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "దిగుమతి / ఎగుమతి" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Table options" msgid "Databases display options." msgstr "పట్టిక ఎంపికలు" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Show more actions" msgid "Servers display options." msgstr "మరిన్ని చర్యలను చూపించు" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Table options" msgid "Tables display options." msgstr "పట్టిక ఎంపికలు" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Hide/Show all" msgid "Main panel" msgstr "అన్నింటిని చూపుము/దాచుము" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "మైక్రోసాఫ్ట్ ఆఫీస్" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "ఇతర ప్రముఖ అమరికలు" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "పుట శీర్షికలు" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "భద్రత" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "ప్రాధమిక అమరికలు" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "అధీకరణ" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "అధీకరణ అమరికలు" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "సేవకి స్వరూపణం" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Server configuration" msgid "Enter server connection parameters." msgstr "సేవకి స్వరూపణం" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 #, fuzzy #| msgid "Server configuration" msgid "Configuration storage" msgstr "సేవకి స్వరూపణం" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "More settings" msgid "SQL queries settings." msgstr "మరిన్ని అమరికలు" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database" msgid "Database structure" msgstr "డేటాబేస్" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database" msgid "Table structure" msgstr "డేటాబేస్" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "కాగితపు పరిమాణం" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Add new field" msgid "Customize text input fields." msgstr "క్రొత్త ఫీల్డ్ చేర్చు" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "హెచ్చరికలు" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Comments" msgid "Column names in first row" msgstr "వ్యాఖ్యలు" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6481,656 +6490,656 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "గరిష్ఠ పట్టికలు" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show" msgid "Show databases navigation as tree" msgstr "చూపించు" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Table options" msgid "Show logo in navigation panel." msgstr "పట్టిక ఎంపికలు" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "చిహ్నాన్ని చూపించు" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table options" msgid "Enable navigation tree expansion" msgstr "పట్టిక ఎంపికలు" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "సహజ క్రమం" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table options" msgid "Table navigation bar" msgstr "పట్టిక ఎంపికలు" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relations" msgid "Relational display" msgstr "సంబంధాలు" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Show more actions" msgid "For display Options" msgstr "మరిన్ని చర్యలను చూపించు" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "ఉపయోగించకపోతే ఖాళీగా వదిలేయండి" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication settings" msgid "Authentication method to use." msgstr "అధీకరణ అమరికలు" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "అనుసంధాన రకం" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Table comments" msgid "Central columns table" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7138,424 +7147,424 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "డేటాబేస్" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgctxt "short form" #| msgid "Create table" msgid "Favorites table" msgstr "పట్టికను సృష్టించు" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "User preferences" msgid "UI preferences table" msgstr "వాడుకరి అభిరుచులు" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "పట్టికల్ని వాడు" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show more actions" msgid "Show Creation timestamp" msgstr "మరిన్ని చర్యలను చూపించు" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show" msgid "Show hint" msgstr "చూపించు" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 +msgid "" +"Defines whether the query box should stay on-screen after its submission." +msgstr "" + +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" +msgstr "" + +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "గణాంకాలను చూపించు" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Table comments" msgid "Textarea columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "అప్రమేయ శీర్షిక" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7563,52 +7572,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7616,84 +7625,84 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "వాడుకరిపేరు" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "సంకేతపదం" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7717,46 +7726,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Spreadsheet" msgstr "ఓపెన్ డాక్యుమెంట్" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "మైక్రోసాఫ్ట్ వర్డ్ 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Text" @@ -7997,20 +8006,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "సంకేతపదం లేదు" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "సంకేతపదం:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8159,8 +8168,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8669,8 +8678,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9159,7 +9168,7 @@ msgstr "నిష్క్రమించు" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Table options" msgid "Reload navigation panel" @@ -9843,8 +9852,8 @@ msgstr "%sకి స్వాగతం" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10081,7 +10090,7 @@ msgstr "వ్యాఖ్యలు" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -11037,7 +11046,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11045,16 +11054,16 @@ msgstr "వాడుకరి పేరు" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "వాడుకరి పేరు" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "సంకేతపదం" @@ -11082,10 +11091,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -11097,49 +11106,49 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "స్థానిక" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" # మొదటి అనువాదము #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "ఏ వాడుకరి ఐనను" # మొదటి అనువాదము #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Add new field" msgid "Use text field:" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "మళ్ళీ టైపుచెయ్యండి" @@ -11923,7 +11932,7 @@ msgstr "ఏమీలేవు" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11990,14 +11999,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12006,7 +12015,7 @@ msgid "Administration" msgstr "పరిపాలన" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -12017,7 +12026,7 @@ msgid "Global" msgstr "సార్వత్రిక విలువ" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -12034,265 +12043,265 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "ప్రవేశపు సమాచారం" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "ఏ వాడుకరి ఐనను" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "Database %s has been dropped." msgid "User has been added." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "వాడుకరి" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "వాడుకరి కనబడలేదు." # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "ఏదైనను" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… పాతదే ఉంచుము." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "%s అనే వాడుకరి ఇప్పటికే ఉన్నారు!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Add a new User" msgid "Edit Privileges:" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "Overview" msgid "Users overview" msgstr "అవలోకనం" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "మీరు క్రొత్త వాడుకరిని చేర్చారు." @@ -14043,23 +14052,23 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "వాడుకరి" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "వ్యాఖ్య" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15081,8 +15090,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15211,8 +15220,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/th.po b/po/th.po index 8b737cd0b4..50f9d78e79 100644 --- a/po/th.po +++ b/po/th.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-02-09 16:12+0200\n" "Last-Translator: mrnonz \n" "Language-Team: Thai \n" +"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.2-dev\n" @@ -66,7 +66,7 @@ msgstr "หมายเหตุของตาราง:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -90,7 +90,7 @@ msgstr "สดมภ์" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -146,8 +146,8 @@ msgid "Links to" msgstr "เชื่อมไปยัง" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -176,13 +176,13 @@ msgstr "ไพรมารี" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -205,13 +205,13 @@ msgstr "ไม่" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -260,14 +260,14 @@ msgid "" msgstr "การจัดเก็บการตั้งค่าของ phpMyAdmin ได้ถูกระงับเอาไว้ %sรายละเอียดเพิ่มเติม%s" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "ตาราง" @@ -280,7 +280,7 @@ msgid "Rows" msgstr "แถว" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "ขนาด" @@ -369,9 +369,9 @@ msgstr "สถานะ" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -574,15 +574,15 @@ msgstr "เพิ่มเรขาคณิต" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -621,8 +621,8 @@ msgstr "คำสั่ง INSERT เต็มรูปแบบ" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "คุณพยายามที่จะอัพโหลดไฟล์ที่มีขนาดใหญ่เกินไป กรุณาดูที่ %sdocumentation%s เอกสารช่วยเหลือ " "เพื่อแก้ไขปัญหาดังกล่าวนี้" @@ -703,7 +703,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "ย้อนกลับ" @@ -726,7 +726,7 @@ msgid "General Settings" msgstr "ตั้งค่าทั่วไป" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" @@ -815,7 +815,7 @@ msgstr "ข้อมูลล็อกอิน" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "เอกสารประกอบ" @@ -1086,7 +1086,7 @@ msgstr "เพิ่มดัชนีใหม่" msgid "Edit Index" msgstr "แก้ไขดัชนี" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "เพิ่มคอลัมน์ %s ไปยังดัชนี" @@ -1123,7 +1123,7 @@ msgstr "ต้องเลือกให้แสดงอย่างน้อ #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1160,12 +1160,12 @@ msgstr "ชื่อโฮสต์ยังว่างอยู่!" msgid "The user name is empty!" msgstr "ชื่อผู้ใช้ยังว่างอยู่!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "รหัสผ่านยังว่างอยู่!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "รหัสผ่านไม่ตรงกัน!" @@ -1368,7 +1368,7 @@ msgstr "กรุณาเพิ่มค่าตัวแปรอย่าง #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1649,7 +1649,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1868,7 +1868,7 @@ msgstr "แสดงช่องคำค้น SQL" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2145,7 +2145,7 @@ msgstr "สารบัญ" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "ข้าม" @@ -2344,7 +2344,7 @@ msgstr "กดเพื่อเลือก
เพื่อดูสด #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "แสดงทั้งหมด" @@ -2455,7 +2455,7 @@ msgstr "ซ่อนแผง" msgid "Show hidden navigation tree items." msgstr "โหลดกรอบนำทางใหม่" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Use text field" @@ -2965,16 +2965,16 @@ msgid "Delete" msgstr "ลบ" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3106,7 +3106,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3540,8 +3540,8 @@ msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "การแสดงผลนี้ จะแสดงเพียงจำนวนข้อมูลนี้เท่านั้น ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s" #: libraries/DisplayResults.class.php:4560 @@ -3579,6 +3579,7 @@ msgstr "ทำกับที่เลือก:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3594,12 +3595,12 @@ msgstr "เปลี่ยน" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3800,7 +3801,7 @@ msgid "" msgstr "ดัชนี %1$s และ %2$s น่าจะเป็นอันเดียวกัน ควรจะลบออกไปอันหนึ่ง" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "เซิร์ฟเวอร์" @@ -3815,11 +3816,11 @@ msgstr "ตารางจำลอง (View)" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3835,7 +3836,7 @@ msgstr "โครงสร้าง" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3861,9 +3862,9 @@ msgstr "แทรก" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "สิทธิ" @@ -3925,9 +3926,9 @@ msgid "Central columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "ฐานข้อมูล" @@ -4045,7 +4046,7 @@ msgid "Recent" msgstr "ตั้งค่าใหม่" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4126,7 +4127,7 @@ msgstr "การเรียงลำดับ" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4515,14 +4516,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4785,7 +4786,7 @@ msgstr "ขนาดใหญ่สุด: %s%s" msgid "MySQL said: " msgstr "MySQL แสดง: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "อธิบาย SQL" @@ -4797,7 +4798,7 @@ msgstr "ไม่ต้องอธิบาย SQL" msgid "Without PHP Code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" @@ -4919,13 +4920,13 @@ msgstr "คำอธิบาย" msgid "Use this value" msgstr "ใช้ค่านี้" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5356,7 +5357,7 @@ msgid "Set value: %s" msgstr "ตั้งค่า: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "คืนค่าเดิม" @@ -5733,77 +5734,89 @@ msgstr "" msgid "Default table tab" msgstr "แท็บตารางเริ่มต้น" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "ใส่ 'backqoute' ให้กับชื่อตารางและฟิลด์" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "ใส่ 'backqoute' ให้กับชื่อตารางและฟิลด์" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "เสนอโครงสร้างตาราง" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "เสนอโครงสร้างตาราง" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "แสดงเซิร์ฟเวอร์เป็นรายการ" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "การดูแลรักษาตาราง" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "คำสั่ง" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "บันทึกเป็นไฟล์" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "ชุดอักขระของไฟล์" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "รูปแบบ" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "บีบอัดข้อมูล" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5815,73 +5828,73 @@ msgstr "บีบอัดข้อมูล" msgid "Put columns names in the first row" msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "คร่อมฟิลด์ด้วย" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "เครื่องหมายสำหรับ escape char" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "แทนที่ NULL เป็น" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "จบแถวด้วย" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "จบแถวด้วย" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "รุ่น Excel" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 #, fuzzy msgid "Database name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 #, fuzzy msgid "Server name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 #, fuzzy msgid "Table name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5892,496 +5905,496 @@ msgstr "รูปแบบของชื่อไฟล์" msgid "Dump table" msgstr "%s ตาราง" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "รวมถึงคำอธิบายภาพของตาราง" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "คำอธิบายตาราง" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 #, fuzzy #| msgid "Table caption" msgid "Continued table caption" msgstr "คำอธิบายตาราง" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "คีย์ป้ายชื่อ" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "รีเลชัน" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "วิธีการส่งออก" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "บันทึกบนเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "เขียนทับแฟ้มที่มีอยู่แล้ว" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 #, fuzzy msgid "Remember file name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "ใส่ 'backqoute' ให้กับชื่อตารางและฟิลด์" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "โหมดที่เข้ากันได้กับ SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "สร้าง/อัพเดท/ตรวจสอบวันที่" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Use delayed inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "สร้างตารางในฐานข้อมูลนี้ %s" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "เพิ่ม %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "ไม่มีตาราง" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "การเชื่อมต่อ SSL" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "โหมดเรียกดู" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Browse mode" msgid "Customize browse mode." msgstr "โหมดเรียกดู" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize export options" msgid "Customize default options." msgstr "ตัวเลือกการส่งออกที่กำหนดเอง" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "ข้อมูล CSV (คั่นด้วยเครื่องหมายลูกน้ำ \",\")" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "ผู้พัฒนา" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "โหมดแก้ไข" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize import defaults" msgid "Customize edit mode." msgstr "นำเข้าค่าเริ่มต้นที่กำหนดเอง" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "ส่งออกค่าเริ่มต้น" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize export options" msgid "Customize default export options." msgstr "ตัวเลือกการส่งออกที่กำหนดเอง" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "คุณสมบัติ" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "ทั่วไป" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 #, fuzzy msgid "Import defaults" msgstr "นำเข้าไฟล์" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize export options" msgid "Customize default common import options." msgstr "ตัวเลือกการส่งออกที่กำหนดเอง" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "นำเข้า / ส่งออก" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "สถิติฐานข้อมูล" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "แผงนำทาง" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize navigation panel" msgid "Customize appearance of the navigation panel." msgstr "ปรับแต่งแผงนำทาง" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "เซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "ตัวเลือกการแสดงเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "ตัวเลือกการแสดงตาราง" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "แผงหลัก" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "ตั้งค่าหลักอื่นๆ" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "หมายเลขหน้า:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "หน้าต่างแบบสอบถาม" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "ความปลอดภัย" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "ตั้งค่าพื้นฐาน" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "รับรองความถูกต้อง" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "ตั้งค่าการรับรองความถูกต้อง" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "กำหนดค่าเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "ป้อนพารามิเตอร์ของการเชื่อมต่อเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "กำหนดค่าการจัดเก็บข้อมูล" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "เปลี่ยนแปลงการติดตาม" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "ตัวเลือกการส่งออกที่กำหนดเอง" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "นำเข้าค่าเริ่มต้นที่กำหนดเอง" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "ปรับแต่งแผงนำทาง" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Use text field" msgid "Customize main panel" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "แบบสอบถาม SQL" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "คำค้น SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "คำค้น SQL" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "สถานะ" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "หน้าเริ่มต้นที่กำหนดเอง" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "โครงสร้างฐานข้อมูล" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "โครงสร้างของตาราง" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "ตาราง " -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "รีเลชันแนล สกีมา" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "ขนาดกระดาษ" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "ฟิลด์ข้อความ" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "ฟิลด์ป้อนข้อความที่กำหนดเอง" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "แท็กซี่! ข้อความ" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "คำเตือน" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " @@ -6393,142 +6406,142 @@ msgstr "" "เปิดใช้งาน [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] " "การบีบอัดสำหรับการดำเนินการนำเข้าและส่งออก" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "เขียนทับด้วยข้อมูลจากไฟล์" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6536,745 +6549,745 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "ระบุระยะเวลา (วินาที) ที่คุกกี้เข้าสู่ระบบที่ถูกต้อง" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "เข้าสู่ระบบความถูกต้องของคุกกี้" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "จำนวนสูงสุดของตารางที่ใช้ล่าสุด; กำหนด 0 เพื่อปิดใช้งาน" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of databases displayed in database list" msgid "Maximum number of databases displayed in database list." msgstr "จำนวนสูงสุดของฐานข้อมูลที่ถูกแสดงในรายการฐานข้อมูล" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "ฐานข้อมูลสูงสุด" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Use text field" msgid "Maximum items on first level" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "จำนวนสูงสุดของตารางที่ถูกแสดงในรายการตาราง" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "ตารางสูงสุด" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Memory limit" msgstr "ขีดจำกัดของทรัพยากร" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Reload navigation frame" msgid "Show databases navigation as tree" msgstr "โหลดกรอบนำทางใหม่" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Reload navigation frame" msgid "Show logo in navigation panel." msgstr "โหลดกรอบนำทางใหม่" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "คำอธิบายตาราง" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "จำนวนสูงสุดของตารางที่ใช้ล่าสุด; กำหนด 0 เพื่อปิดใช้งาน" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "จำนวนสูงสุดของตารางที่ใช้ล่าสุด; กำหนด 0 เพื่อปิดใช้งาน" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "ตารางที่ใช้ล่าสุด" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "เรียงลำดับตามธรรมชาติ" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "คำอธิบายตาราง" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Use persistent connections to MySQL databases." msgstr "บีบอัดการเชื่อมต่อไปยังเซิร์ฟเวอร์ MySQL" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "เปลี่ยนชื่อตารางเป็น" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key default sort order" msgstr "ได้เพิ่มไพรมารีคีย์แล้วใน %s" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational schema" msgid "Relational display" msgstr "รีเลชันแนล สกีมา" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "ตัวเลือกการแสดงเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "ค่าเซสชั่น" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "รหัสประจำตัวของ HTTP" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "กำหนดค่าไฟล์ SweKey" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "วิธีการรับรองความถูกต้องที่ใช้" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "ประเภทของการรับรองความถูกต้อง" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "บีบอัดการเชื่อมต่อไปยังเซิร์ฟเวอร์ MySQL" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "บีบอัดการเชื่อมต่อ" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "ประเภทการเชื่อมต่อ" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "โฮสต์ใดๆ" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "โฮสต์ใดๆ" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "ซ่อนฐานข้อมูล" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "ชื่อโฮสต์ของเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL ที่ออกจากระบบ" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "เชื่อมต่อโดยไม่ต้องใช้รหัสผ่าน" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "เชื่อมต่อโดยไม่ต้องใช้รหัสผ่าน" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "แสดงฐานข้อมูลที่ระบุไว้เท่านั้น" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, fuzzy #| msgid "Leave empty if not using config auth" msgid "Leave empty if not using config auth." msgstr "ปล่อยว่างไว้ ถ้าไม่ใช้การกำหนดค่าการรับรองความถูกต้อง" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "รหัสผ่าน" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "ฐานข้อมูล" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "พอร์ตของเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "วิเคราะห์ตาราง" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "ตัวแปร" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "ซ่อมแซมตาราง" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7286,382 +7299,382 @@ msgstr "" "ดูตัวอย่าง [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "ประเภทของการรับรองความถูกต้อง[/a]" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "ชื่อเซสชั่น" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "URL ที่เข้าสู่ระบบ" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "ซ็อกเก็ตของเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "ใช้ SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "จัดระเบียบตาราง" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "คำสั่ง" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "สร้างเวอร์ชั่นโดยอัตโนมัติ" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "ใช้ตาราง" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "ชื่อผู้ใช้" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "แสดงข้อมูลของ PHP" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy msgid "Show field types" msgstr "แสดงตาราง" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, fuzzy #| msgid "Whether to show hint or not" msgid "Whether to show hint or not." msgstr "จะแสดงคำแนะนำหรือไม่" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "แสดงคำแนะนำ" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "แสดงคำค้นแบบเต็ม" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "คำค้น SQL" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 #, fuzzy msgid "Show statistics" msgstr "สถิติของแถว" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "ข้ามตารางที่ถูกล็อก" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "เข้าสู่ระบบความถูกต้องของคุกกี้" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ค่าปริยาย" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7669,54 +7682,54 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 #, 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7724,33 +7737,33 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "ชื่อผู้ใช้:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "รหัสผ่าน" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " @@ -7762,53 +7775,53 @@ msgstr "" "เปิดใช้งาน [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] " "การบีบอัดสำหรับการดำเนินการนำเข้าและส่งออก" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "พอร์ตของเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7830,47 +7843,47 @@ msgstr "การรับรองความถูกต้องของ HT msgid "Signon authentication" msgstr "การรับรองความถูกต้องของการเข้าสู่ระบบ" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "เอกสารอ้างอิง" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 #, fuzzy msgid "Database export options" msgstr "สถิติฐานข้อมูล" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "ข้อมูล CSV สำหรับไมโครซอฟต์เอ็กเซล" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -8121,20 +8134,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "ไม่มีรหัสผ่าน" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "รหัสผ่าน:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8289,8 +8302,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8808,8 +8821,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9294,7 +9307,7 @@ msgstr "ออกจากระบบ" msgid "phpMyAdmin documentation" msgstr "เอกสารประกอบของ phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -9979,8 +9992,8 @@ msgstr "%s ยินดีต้อนรับ" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "คุณคงไม่ได้สร้างแฟ้มการกำหนดค่า คุณอาจต้องการใช้ %1$ssetup script%2$s " "เพื่อสร้างอย่างใดอย่างหนึ่ง" @@ -10242,7 +10255,7 @@ msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11234,7 +11247,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11242,16 +11255,16 @@ msgstr "ชื่อผู้ใช้" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "ชื่อผู้ใช้" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "รหัสผ่าน" @@ -11281,10 +11294,10 @@ msgstr "เซิร์ฟเวอร์" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "โฮสต์" @@ -11296,47 +11309,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "โฮสต์ใดๆ" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "โลคอล" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "โฮสต์นี้" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "ผู้ใช้ใดๆ" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "ใช้ช่องใส่ข้อความ (text field)" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "อีกครั้ง" @@ -12141,7 +12154,7 @@ msgstr "ไม่มี" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12210,14 +12223,14 @@ msgstr "จำกัดจำนวนการเชื่อมต่อให #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12228,7 +12241,7 @@ msgid "Administration" msgstr "การดูแลระบบ" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" @@ -12239,7 +12252,7 @@ msgid "Global" msgstr "โกลบอล" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" @@ -12256,270 +12269,270 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "ข้อมูลล็อกอิน" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "คุณได้เพิกถอนสิทธิของ %s" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "เพิ่มผู้ใช้" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "มอบสิทธิทั้งหมดสำหรับฐานข้อมูล \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "ผู้ใช้" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "มอบสิทธิ" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ไม่พบผู้ใช้ใดๆ." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "ใดๆ" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "โกลบอล" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "ไวล์การ์ด" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "เฉพาะฐานข้อมูล" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "แก้ไขสิทธิ" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "เพิกถอน" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "แก้ไข เครื่องแม่ข่าย" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… เก็บของเก่าไว้." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "ถอนผู้ใช้ที่เลือก" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "กำลังลบ %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "สิทธิ" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "แก้ไขสิทธิ" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" @@ -14306,23 +14319,23 @@ msgstr "ชื่อดัชนี :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "ชนิดของดัชนี :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "ผู้ใช้" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "หมายเหตุ" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder" @@ -15352,8 +15365,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15485,8 +15498,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -16181,8 +16194,8 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" -"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า 60%" -"% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB " +"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า " +"60%% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB " "มากหรือบริการอื่นๆ ที่ทำงานบนเครื่องเดียวกัน" #: libraries/advisory_rules.txt:459 @@ -16972,8 +16985,8 @@ msgstr "concurrent_insert ถูกตั้งค่าไว้ที่ 0" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%" -#~ "s" +#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere" +#~ "%s" #~ msgid "No tables" #~ msgstr "ไม่มีตาราง" diff --git a/po/tk.po b/po/tk.po index b128d64a36..996bf5b061 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen \n" +"Language: tk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tk\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 1.6-dev\n" @@ -71,7 +71,7 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -267,14 +267,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "" @@ -287,7 +287,7 @@ msgid "Rows" msgstr "" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "" @@ -375,9 +375,9 @@ msgstr "" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -568,15 +568,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -607,8 +607,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -681,7 +681,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -702,7 +702,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -775,7 +775,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -995,7 +995,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1022,7 +1022,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1051,12 +1051,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1253,7 +1253,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1524,7 +1524,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1737,7 +1737,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1979,7 +1979,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2148,7 +2148,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Hemmesini görkez" @@ -2246,7 +2246,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "Hemmesini görkez" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2729,16 +2729,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2853,7 +2853,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3237,8 +3237,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3273,6 +3273,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3288,12 +3289,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3480,7 +3481,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3495,11 +3496,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3515,7 +3516,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3541,9 +3542,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3603,9 +3604,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3713,7 +3714,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Show all" msgid "Favorite tables" @@ -3788,7 +3789,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4132,14 +4133,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4387,7 +4388,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4399,7 +4400,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4512,13 +4513,13 @@ msgstr "Düşündiriş" msgid "Use this value" msgstr "Şu bahany ulan" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4907,7 +4908,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5261,70 +5262,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5334,60 +5343,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5396,586 +5405,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5983,1048 +5992,1048 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show all" msgid "Show databases navigation as tree" msgstr "Hemmesini görkez" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Show all" msgid "Enable navigation tree expansion" msgstr "Hemmesini görkez" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Show all" msgid "Favorites table" msgstr "Hemmesini görkez" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7032,52 +7041,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7085,80 +7094,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7178,44 +7187,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7421,20 +7430,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7569,8 +7578,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8064,8 +8073,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8520,7 +8529,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9164,8 +9173,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9388,7 +9397,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10297,22 +10306,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10340,10 +10349,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10355,45 +10364,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11110,7 +11119,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11175,14 +11184,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11191,7 +11200,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11200,7 +11209,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11217,253 +11226,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -13062,19 +13071,19 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -14029,8 +14038,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14148,8 +14157,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/tr.po b/po/tr.po index 9fad29f4b3..bf1e247609 100644 --- a/po/tr.po +++ b/po/tr.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-03-18 14:15-0400\n" -"PO-Revision-Date: 2015-03-18 20:02+0200\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" +"PO-Revision-Date: 2015-03-22 14:26+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: Turkish " "\n" @@ -67,7 +67,7 @@ msgstr "Tablo yorumları:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -91,7 +91,7 @@ msgstr "Sütun" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -147,8 +147,8 @@ msgid "Links to" msgstr "Bağlantı verilen" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -177,13 +177,13 @@ msgstr "Birincil" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -206,13 +206,13 @@ msgstr "Hayır" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -262,14 +262,14 @@ msgstr "" "phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. %sNedenini bulun%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tablo" @@ -282,7 +282,7 @@ msgid "Rows" msgstr "Satır" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Boyut" @@ -371,9 +371,9 @@ msgstr "Durum" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -569,15 +569,15 @@ msgstr "Geometri ekle" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -610,8 +610,8 @@ msgstr "Tamamlanmamış parametreler" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınır için çözüm " "yolu olarak %sbelgeden%s yararlanın." @@ -699,7 +699,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Geri" @@ -723,7 +723,7 @@ msgid "General Settings" msgstr "Genel Ayarlar" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Parola değiştir" @@ -796,7 +796,7 @@ msgstr "Sürüm bilgisi:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Belgeler" @@ -1050,7 +1050,7 @@ msgstr "İndeksi ekle" msgid "Edit Index" msgstr "İndeksi düzenle" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "İndekse %s sütun ekle" @@ -1077,7 +1077,7 @@ msgstr "En az bir sütun eklemek zorundasınız." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "SQL Önizle" @@ -1106,12 +1106,12 @@ msgstr "Anamakine adı boş!" msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" @@ -1312,7 +1312,7 @@ msgstr "Lütfen diziye en az bir değişken ekleyin!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1367,8 +1367,8 @@ msgid "" "depending on your system." msgstr "" "slow_query_log etkinleştirildi ama sunucu sadece %d saniyeden daha uzun " -"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak 0-" -"2 saniyeye ayarlanması tavsiye edilir." +"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak " +"0-2 saniyeye ayarlanması tavsiye edilir." #: js/messages.php:164 #, php-format @@ -1603,7 +1603,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1816,7 +1816,7 @@ msgstr "Sorgu kutusunu göster" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2070,7 +2070,7 @@ msgstr "Veri imleci içeriği" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Yoksay" @@ -2249,7 +2249,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Tümünü göster" @@ -2351,7 +2351,7 @@ msgstr "Paneli Gizle" msgid "Show hidden navigation tree items." msgstr "Gizli gezinti ağacı öğelerini göster." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Ana panel ile bağla" @@ -2403,8 +2403,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %" -"s, %s tarihinde yayınlandı." +"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm " +"%s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version #: js/messages.php:501 @@ -2852,16 +2852,16 @@ msgid "Delete" msgstr "Sil" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2976,7 +2976,7 @@ msgid "During current session" msgstr "Şu anki oturum sırasında" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3356,8 +3356,8 @@ msgstr "SQL sorgunuz başarılı olarak çalıştırıldı." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." @@ -3393,6 +3393,7 @@ msgstr "Seçilileri:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3408,12 +3409,12 @@ msgstr "Değiştir" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3605,7 +3606,7 @@ msgstr "" "olabilir." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Sunucu" @@ -3620,11 +3621,11 @@ msgstr "Görünüm" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3640,7 +3641,7 @@ msgstr "Yapı" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3666,9 +3667,9 @@ msgstr "Ekle" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Yetkiler" @@ -3728,9 +3729,9 @@ msgid "Central columns" msgstr "Merkezi sütunlar" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Veritabanları" @@ -3838,7 +3839,7 @@ msgid "Recent" msgstr "Son" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Sık kullanılan tablolar" @@ -3909,7 +3910,7 @@ msgstr "Sıralama" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4268,20 +4269,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Küçük kayan noktalı bir sayı, izin verilebilir değerler -3.402823466E+38'den " "-1.175494351E-38'e, 0 ve 1.175494351E-38'den 3.402823466E+38'e kadardır" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler -" -"1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve " +"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler " +"-1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve " "2.2250738585072014E-308'den 1.7976931348623157E+308'e kadardır" #: libraries/Types.class.php:336 @@ -4574,7 +4575,7 @@ msgstr "En fazla: %s%s" msgid "MySQL said: " msgstr "MySQL çıktısı: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL'i açıkla" @@ -4586,7 +4587,7 @@ msgstr "SQL Açıklamasını atla" msgid "Without PHP Code" msgstr "PHP Kodsuz" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP Kodu oluştur" @@ -4697,13 +4698,13 @@ msgstr "Açıklama" msgid "Use this value" msgstr "Bu değeri kullan" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4880,8 +4881,8 @@ msgid "" "setting for [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. phpMyAdmin is " "currently using the default time zone of the database server." msgstr "" -"%1$s saat dilimi sunucu %2$d için kullanılamaz. Lütfen [em]$cfg['Servers'][%3" -"$d]['SessionTimeZone'][/em] için yapılandırma ayarlarınızı kontrol edin. " +"%1$s saat dilimi sunucu %2$d için kullanılamaz. Lütfen [em]$cfg['Servers']" +"[%3$d]['SessionTimeZone'][/em] için yapılandırma ayarlarınızı kontrol edin. " "phpMyAdmin, veritabanı sunucusunun şu anki varsayılan saat dilimini " "kullanıyor." @@ -5103,7 +5104,7 @@ msgid "Set value: %s" msgstr "Ayar değeri: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Varsayılan değeri geri yükle" @@ -5218,8 +5219,8 @@ msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." msgstr "" -"Eğer [kbd]tanımlama bilgisi[/kbd] kimlik doğrulaması kullanılıyorsa ve %" -"sOturum açma tanımlama bilgisi depolaması%s değeri 0 değilse, %sOturum açma " +"Eğer [kbd]tanımlama bilgisi[/kbd] kimlik doğrulaması kullanılıyorsa ve " +"%sOturum açma tanımlama bilgisi depolaması%s değeri 0 değilse, %sOturum açma " "tanımlama bilgisi geçerliliği%s eşit ya da daha az değere ayarlanmak " "zorundadır." @@ -5232,8 +5233,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarlarını kullanın " -"- %sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%" -"s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " +"- %sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi" +"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " "kullanıcıya sahip ve bağlı olduğunuz bir ISS'e ait ise güvenilir olmayabilir." #: libraries/config/ServerConfigChecks.class.php:434 @@ -5248,8 +5249,8 @@ msgstr "" "[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna " "otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı " "anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya " -"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %" -"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" +"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. " +"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" "kbd] olarak ayarlayın." #: libraries/config/ServerConfigChecks.class.php:440 @@ -5534,23 +5535,33 @@ msgstr "Bir tablo girildiğinde görüntülenen sekme." msgid "Default table tab" msgstr "Varsayılan tablo sekmesi" +#: libraries/config/messages.inc.php:94 +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "SQL sorgularında tablo ve sütun adlarını otomatik tamamlar." + #: libraries/config/messages.inc.php:95 +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Tablo ve sütun adları için otomatik tamamlamayı etkinleştir" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Tablo yapısı eylemlerinin gizlenip gizlenmeyeceği." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Tablo yapısı eylemlerini gizle" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Sunucu listelemeyi aşağı açılır menü yerine liste olarak gösterir." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Sunucuları liste olarak görüntüle" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5558,11 +5569,11 @@ msgstr "" "Bir veritabanının seçili tablolarını uyarlama ya da onarma gibi toplu tablo " "bakımı işlemlerini etkisizleştirir." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Çoklu tablo bakımı etkisiz" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5570,39 +5581,38 @@ msgstr "" "Betiğin çalışmasına izin verilecek saniye sayısı ayarıdır (sınırsız için " "[kbd]0[/kbd])." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "En fazla yürütme süresi" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format -#| msgid "Add %s statement" msgid "Use %s statement" msgstr "%s ifadesi kullan" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Dosya olarak kaydet" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Dosyanın karakter grubu" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Biçim" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Sıkıştırma" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5612,60 +5622,60 @@ msgstr "Sıkıştırma" msgid "Put columns names in the first row" msgstr "İlk satır içine sütun adlarını koy" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Sütunlar şununla kapatılmış" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Sütunlar şununla atlatılmış" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "NULL'u şununla değiştir" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Sütunlardaki CRLF karakterlerini kaldır" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Sütunlar şununla sonlandırılmış" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Satırlar şununla sonlandırılmış" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel yapısı" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Veritabanı adı şablonu" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Sunucu adı şablonu" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Tablo adı şablonu" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5674,137 +5684,137 @@ msgstr "Tablo adı şablonu" msgid "Dump table" msgstr "Tabloyu dökümle" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Tablo başlığını dahil et" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Tablo başlığı" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Devam eden tablo başlığı" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Etiket anahtarı" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME türü" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Bağlantılar" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Dışa aktarma yöntemi" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Sunucuda kaydet" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Mevcut dosya(ların)nın üzerine yaz" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Dosya adı şablonunu hatırla" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Tablo ve sütun adlarını ters tırnaklarla kapattır" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL uyumluluk kipi" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE seçenekleri:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Oluşturma/Güncelleme/Denetleme tarihleri" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Gecikmiş eklemeleri kullan" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Dış anahtar kontrollerini etkisizleştir" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Görünümleri tablolar halinde dışa aktar" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s ekle" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "BINARY ve BLOB için onaltılık düzen kullan" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Yoksayılan eklemeleri kullan" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Veri eklenirken kullanılacak sözdizimi" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Oluşturulan sorgunun azami uzunluğu" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Dışa aktarma türü" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "İşlem içinde dışa aktarmayı kapsa" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "UTC olarak dışa aktarma zamanı" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "phpMyAdmin kullanırken güvenli bağlantıya zorlar." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "SSL bağlantıya zorla" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5812,142 +5822,142 @@ msgstr "" "Dış anahtar aşağı açılır kutusu içindeki öğeler için sıralama düzeni; [kbd]" "content[/kbd] başvurulan veridir, [kbd]id[/kbd] anahtar değerdir." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Dış anahtar aşağı açılır düzeni" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "Eğer az öğe bulunuyorsa aşağı açılır kutu kullanılacaktır." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Dış anahtar sınırı" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Gözatma kipi" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Gözatma kipini özelleştirir." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Varsayılan seçenekleri özelleştirir." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Geliştirici" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "phpMyAdmin geliştiricileri için ayarlar." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Düzenleme kipi" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Düzenleme kipini özelleştirir." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Dışa aktarma varsayılanları" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Varsayılan dışa aktarma seçeneklerini özelleştirir." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Özellikler" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Genel" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Bazı çoğunlukla kullanılmış seçenekleri ayarla." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "İçe aktarma varsayılanları" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Varsayılan genel içe aktarma seçeneklerini özelleştirir." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "İçe Aktar / Dışa Aktar" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "İçe ve dışa aktarma dizinlerini ve sıkıştırma seçeneklerini ayarlar." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Veritabanlarını görüntüleme seçenekleri." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Gezinti paneli" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Gezinti panelinin görünümünü özelleştirir." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Sunucular" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Sunucuları görüntüleme seçenekleri." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Tabloları görüntüleme seçenekleri." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Ana panel" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Diğer çekirdek ayarlar" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Başka hiçbir yere uymayan ayarlar." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Sayfa başlığı" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5956,19 +5966,19 @@ msgstr "" "kullanılabilecek sihirli dizgiler için [doc@cfg_TitleTable]belgeden[/doc] " "yararlanın." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Sorgu penceresi" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Sorgu penceresi seçeneklerini özelleştirir" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Güvenlik" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -5976,23 +5986,23 @@ msgstr "" "Lütfen unutmayın, phpMyAdmin sadece bir arabirimdir ve özellikleri MySQL'i " "kısıtlamaz." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Temel ayarlar" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Kimlik doğrulaması" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Kimlik doğrulaması ayarları." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Sunucu yapılandırması" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6000,15 +6010,15 @@ msgstr "" "Gelişmiş sunucu yapılandırması, ne için olduklarını bilmedikçe bu " "seçenekleri değiştirmeyin." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Sunucu bağlantı parametrelerini girin." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Yapılandırma depolama" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6018,11 +6028,11 @@ msgstr "" "yapılandırır, belgelerde [doc@linked-tables]phpMyAdmin yapılandırma depolama" "[/doc] kısmına bakın." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Değişiklikleri izleme" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6030,109 +6040,109 @@ msgstr "" "Veritabanında yapılan değişiklikleri izleme. phpMyAdmin yapılandırma " "depolaması gerekir." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Dışa aktarma seçeneklerini özelleştir" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "İçe aktarma varsayılanlarını özelleştir" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Gezinti panelini özelleştir" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Ana paneli özelleştir" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL sorguları" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL Sorgu kutusu" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "SQL Sorgu kutularında gösterilecek bağlantıları özelleştirir." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL sorguları ayarları." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Başlangıç" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Başlangıç sayfasını özelleştirir." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Veritabanı yapısı" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Hangi ayrıntıların veritabanı yapısında (tabloların listesi) gösterileceğini " "seçin." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Tablo yapısı" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Tablo yapısı (sütunların listesi) için ayarlar." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Sekmeler" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Sekmelerin nasıl çalışmasını istiyorsanız seçin." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Bağlantılı şemayı göster" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Kağıt boyutu" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Metin alanları" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Metin girdi alanlarını özelleştirir." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! metni" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Varsayılan seçenekleri özelleştirir" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Uyarılar" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "phpMyAdmin tarafından gösterilen bazı uyarıları etkisizleştir." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6140,15 +6150,15 @@ msgstr "" "İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/Gzip]gzip" "[/a] sıkıştırmayı etkinleştirin." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Iconv için ilave parametreler" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6156,11 +6166,11 @@ msgstr "" "Eğer etkinleştirilirse, phpMyAdmin çoklu ifade sorgularını hesaplamaya devam " "eder, eğer sorgulardan biri başarısız olsa bile." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Çoklu ifade hatalarını yoksay" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6170,27 +6180,26 @@ msgstr "" "kesmeye izin verir. Bu büyük dosyaları içe aktarmak için iyi bir yol " "olabilir, ancak bu işlemleri bozabilir." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Kısmi içe aktarma: yarıda kesmeye izin ver" -#: libraries/config/messages.inc.php:336 -#| msgid "Disable foreign key checks" +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "İçe aktarırken dış anahtar kontrollerini geçici olarak etkisizleştir" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "EKLEME hatasında durdurma" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Tablo verisini dosya ile değiştir" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6198,69 +6207,69 @@ msgstr "" "Varsayılan biçim; bu liste yerine göre (veritabanı, tablo) değişir ve sadece " "her zaman SQL vardır." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "İçe aktarılmış dosyanın biçimi" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "YEREL anahtar kelime kullan" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "İlk satır içindeki sütun adları" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Boş satırları içe aktarma" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Parasalları içe aktar ($5.00'ı 5.00'a)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Yüzdeleri doğru ondalık olarak içe aktar (%12.00'ı .12'ye)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Başlangıçtan atlanacak sorgu sayısı." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Kısmi içe aktarma: sorguları atla" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Sıfır değerleri için AUTO_INCREMENT değeri kullanma" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Kaydırıcılar için başlangıç durumu" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Bir defada kaç tane satır eklenebileceğidir." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Eklenmiş satır sayısı" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Gözat görünümünde herhangi bir sayısal olmayan sütunda gösterilen en fazla " "karakter sayısıdır." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Sütun karakterlerini sınırlandır" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6271,11 +6280,11 @@ msgstr "" "bilgisini siler. Bunu FALSE'a ayarlamak çoklu sunuculara bağlandığınızda " "diğer sunuculardan oturumu kapatmayı unutmanızı kolaylaştırır." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Oturum kapatmada tüm tanımlama bilgilerini sil" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6283,11 +6292,11 @@ msgstr "" "[kbd]Tanımlama bilgisi[/kbd] kimlik doğrulaması kipinde önceki açılan " "oturumun hatırlanıp hatırlanmayacağını tanımlar." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Kullanıcı adını hatırla" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6299,50 +6308,50 @@ msgstr "" "için tutulacağıdır, ve tarayıcı penceresini kapatır kapatmaz silinecektir. " "Bu güvenli olmayan ortamlar için önerilir." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Oturum açma tanımlama bilgisi saklama" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" "Oturum açma tanımlama bilgisinin ne kadar (saniye cinsinden) geçerli " "olacağını tanımlar." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Oturum açma tanımlama bilgisi geçerliliği" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "LONGTEXT sütunları için metin alanın iki katı boyutu." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEXT için en büyük metin alanı" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "SQL sorgusu görüntülendiğinde kullanılan en fazla karakter sayısıdır." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "En fazla görüntülenen SQL uzunluğu" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Kullanıcılar yüksek değer ayarlayamazlar" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "Veritabanı listesinde görüntülenen en fazla veritabanı sayısıdır." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "En fazla veritabanı" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6350,21 +6359,21 @@ msgstr "" "Gezinti ağacının ilk seviyesindeki her sayfada görüntülenebilen öğe " "sayısıdır." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "İlk seviyedeki en fazla öğe" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "Gezinti ağacının her sayfasında görüntülenebilen öğe sayısıdır." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Daldaki en fazla öğe" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6373,19 +6382,19 @@ msgstr "" "daha fazla satır içeriyorsa, \"Önceki\" ve \"Sonraki\" bağlantıları " "gösterilecektir." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Görüntülemek için en fazla satır sayısı" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Tablo listesinde görüntülenen en fazla tablo sayısıdır." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "En fazla tablo" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6393,40 +6402,40 @@ msgstr "" "Betiğe ayrılması için izin verilecek bayt sayısıdır, örn. [kbd]32M[/kbd] " "(sınırsız için [kbd]0[/kbd])." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Bellek sınırı" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "Gezinti panelindeki, veritabanı ağacını bir seçici ile değiştirir" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "Veritabanlarını gezinti ağacı olarak göster" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" "Şu anki veritabanı veya tabloyu vurgulayarak ana panel ile bağlantılar." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Gezinti panelinde logoyu gösterir." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Logoyu görüntüle" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "Gezinti panelindeki logoyu işaret eden URL." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Logo bağlantısı URL'si" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6434,27 +6443,27 @@ msgstr "" "Bağlantılı sayfayı ana pencerede ([kbd]main[/kbd]) veya yeni bir tanede " "([kbd]new[/kbd]) açar." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Logo bağlantısı hedefi" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Sunucu seçimini gezinti panelinin en üstünde görüntüler." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Sunucu seçimlerini görüntüle" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Hızlı erişim simgesi için hedef" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "İkinci hızlı erişim simgesi için hedef" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6462,16 +6471,16 @@ msgstr "" "Süzgeç kutusunu görüntülemek için en az öğe (tablolar, görünümler, yordamlar " "ve olaylar) sayısını tanımlar." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Süzgeç kutusunu görüntülemek için en az öğe sayısı" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" "Veritabanı süzgeci kutusunu görüntülemek için en az veritabanı sayısıdır" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6479,96 +6488,96 @@ msgstr "" "Gezinti ağacındaki öğeleri gruplar (aşağıda tanımlanan ayıraç tarafından " "belirlenir)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Ağaçtaki öğeleri grupla" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Veritabanlarını farklı ağaç seviyelerine ayıran dizgidir." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Veritabanı ağaç ayıracı" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Tabloları farklı ağaç seviyelerine ayıran dizgidir." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Tablo ağacı ayıracı" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "En fazla tablo ağacı derinliği" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Fare imleci altında sunucuyu vurgular." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Vurgulamaları etkinleştir" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Gezinti panelinde ağaç genişleme olanağının sunulup sunulmayacağı." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "Gezinti ağacı genişlemesini etkinleştir" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "En fazla son kullanılan tablo sayısıdır; etkisizleştirmek için 0'a ayarlayın." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" "En fazla sık kullanılan tablo sayısıdır; etkisizleştirmek için 0'a ayarlayın." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Son kullanılan tablolar" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Bunlar Düzenle, Kopyala ve Sil bağlantılarıdır." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 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:489 +#: libraries/config/messages.inc.php:491 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Doğal sıra" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Sadece simgeleri, sadece metni veya her ikisinide kullan." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Tablo gezinti çubuğu" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip çıktı arabellekleme" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6576,19 +6585,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Varsayılan sıralama düzeni" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "MySQL veritabanlarına sürekli bağlantı kullan." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Sürekli bağlantılar" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6598,11 +6607,11 @@ msgstr "" "biri bulunamazsa, veritabanı ayrıntıları Yapı sayfasında görüntülenen " "varsayılan uyarıyı etkisizleştir." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Eksik phpMyAdmin yapılandırma depolama tabloları" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6610,11 +6619,11 @@ msgstr "" "Eğer MySQL kütüphanesi ve sunucu arasında fark saptanırsa, görüntülenen " "varsayılan uyarıyı etkisizleştir." -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Sunucu/kütüphane farkı uyarısı" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6622,27 +6631,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ştir." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "MySQL'e ayrılmış kelime uyarısı" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Menü sekmelerinin nasıl görüntüleneceği" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 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:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "BLOB ve BINARY sütunlarını düzenlemeye izin vermez." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Binari sütunlarını koru" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6653,105 +6662,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Kalıcı sorgu geçmişi" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Geçmişte ne kadar sorgu tutulacağıdır." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Sorgu geçmişi uzunluğu" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Kaydetme motoru" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Tablonun sıralamasını hatırla" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 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:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "Birincil anahtar varsayılan sıralama düzeni" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 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:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Başlıkları tekrarla" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "Izgara düzenleme: tetikleme eylemi" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "Bağlantılı görüntüleme" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "Seçenekleri görüntülemek için" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 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:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Dışa aktarmaların sunucu üzerinde kaydedilebileceği dizin." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Kayıt dizini" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Eğer kullanılmayacaksa boş bırakın." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Anamakine izin düzeni" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Varsayılan için boş bırakın." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Anamakine izin kuralları" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Parolasız oturum açmaya izin ver" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Root oturumu açmaya izin ver" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "Oturum saat dilimi" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" @@ -6759,17 +6768,17 @@ msgstr "" "Etkili saat dilimini ayarlar; muhtemelen veritabanı sunucunuzdakinden " "farklıdır" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Alanı" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6779,19 +6788,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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey yapılandırma dosyası" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Kullanmak için kimlik doğrulaması yöntemi." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Kimlik doğrulaması türü" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6799,11 +6808,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Yer imi tablosu" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." @@ -6811,33 +6820,33 @@ msgstr "" "Sütun yorumları/mime türleri istenmiyorsa boş bırakın, önerilen: [kbd]" "pma__column_info[/kbd]." -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Sütun bilgisi tablosu" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "MySQL sunucusu bağlantısını sıkıştırır." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Bağlantıyı sıkıştır" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Bağlantı türü" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Denetim kullanıcısı parolası" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6845,11 +6854,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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Denetim kullanıcısı" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6857,11 +6866,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:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Denetim anamakinesi" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6872,15 +6881,15 @@ msgstr "" "anamakineye eşitse zaten tanımlanmış bağlantı noktasını kullanmak için boş " "bırakın." -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Denetim bağlantı noktası" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Düzenli ifadeye (PCRE) uyan veritabanlarını gizler." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6888,15 +6897,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA kullanımı etkisiz" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Veritabanlarını gizle" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6904,23 +6913,23 @@ msgstr "" "SQL sorgu geçmişi desteği istenmiyorsa boş bırakın, önerilen: [kbd]" "pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL sorgu geçmişi tablosu" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "MySQL sunucusunun çalıştığı anamakine." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Sunucu anamakine adı" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Oturum kapatma URL'si" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6928,15 +6937,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:624 +#: libraries/config/messages.inc.php:626 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:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "QBE kaydedilmiş aramalar tablosu" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." @@ -6944,11 +6953,11 @@ msgstr "" "QBE kaydedilmiş aramalar desteği istenmiyorsa boş bırakın, önerilen: [kbd]" "pma__savedsearches[/kbd]." -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "Merkezi sütunlar tablosu" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." @@ -6956,15 +6965,15 @@ msgstr "" "Merkezi sütunlar desteği istenmiyorsa boş bırakın, önerilen: [kbd]" "pma__central_columns[/kbd]." -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Parolasız bağlanmayı dener." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Parolasız bağlan" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -6974,30 +6983,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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Sadece listelenmiş veritabanları göster" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Yapılandırma kimlik den. için parola" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF şeması: sayfalar tablosu" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7007,22 +7016,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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Veritabanı adı" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Sunucu bağ.noktası" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." @@ -7030,11 +7039,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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Son kullanılan tablo" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." @@ -7042,11 +7051,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:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "Sık kullanılanlar tablosu" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -7054,11 +7063,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Bağlantı tablosu" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7066,32 +7075,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:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Oturumu açma oturum adı" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Oturumu açma URL'si" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Sunucu soketi" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "MySQL sunucusuna bağlantı için SSL'i etkinleştirin." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL kullan" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." @@ -7099,11 +7108,11 @@ msgstr "" "PDF şeması desteği istenmiyorsa boş bırakın, önerilen: [kbd]pma__table_coords" "[/kbd]." -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Tasarımcı ve PDF şeması: tablo koordinatları" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7111,11 +7120,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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Görüntü sütunları tablosu" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7123,11 +7132,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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "KA tercihleri tablosu" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7135,11 +7144,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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "DROP DATABASE ifadesi ekle" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7147,11 +7156,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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "DROP TABLE ifadesi ekle" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7159,20 +7168,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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "DROP VIEW ifadesi ekle" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 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:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "İfadelerden izlere" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7180,11 +7189,11 @@ msgstr "" "SQL sorgu izleme desteği olmaması için boş bırakın, önerilen: [kbd]" "pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL sorgu izleme tablosu" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7192,11 +7201,11 @@ msgstr "" "İzleme mekanizması tablolar ve görünümler için otomatik olarak sürümler " "oluşturursa." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Otomatik olarak sürümleri oluştur" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." @@ -7204,11 +7213,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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Kullanıcı tercihleri depolama tablosu" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7218,11 +7227,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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Kullanıcılar tablosu" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7232,11 +7241,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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Kullanıcı grupları tablosu" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7244,15 +7253,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:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Gizli gezinti öğeleri tablosu" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Yapılandırma kimlik den. için kullanıcı" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -7260,21 +7269,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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Bu sunucunun ayrıntılı adı" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Tüm satırları görüntülemeye izin ver" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7284,47 +7293,47 @@ msgstr "" "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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Parola değiştirme formunu göster" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Veritabanı oluşturma formu göster" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Oluşturma zaman damgasını göster" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 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:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Son güncelleme zaman damgasını göster" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 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:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Son kontrol zaman damgasını göster" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7332,27 +7341,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:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Alan türlerini göster" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "İşlev alanlarını göster" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "İpucu gösterilip gösterilmeyeceği." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "İpucu göster" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7360,64 +7369,64 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] çıktısı için " "bağlantı gösterir." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "phpinfo() bağlantısını göster" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Ayrıntılı MySQL sunucu bilgisini göster" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 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:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "SQL sorgularını göster" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 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:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Sorgu kutusunu tut" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "İstatistikleri göster" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 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:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Kilitli tabloları atla" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Eğer Suhosin algılanırsa, ana sayfada bir uyarı görüntülenir." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin uyarısı" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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 " @@ -7426,11 +7435,11 @@ msgstr "" "Eğer PHP ayarı session.gc_maxlifetime değeri `LoginCookieValidity` " "değerinden az ise, ana sayfada görüntülenen varsayılan uyarıyı etkisizleştir." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "Oturum açma tanımlama bilgisi geçerlilik uyarısı" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7438,11 +7447,11 @@ msgstr "" "Düzenle kipinde metin alanı boyutu (sütunlar), SQL sorgu metni alanları (*2) " "ve sorgu penceresi (*1.25) için bu değerin önemi belirtilecektir." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Metin alanı sütunları" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7450,31 +7459,31 @@ msgstr "" "Düzenle kipinde metin alanı boyutu (satırlar), SQL sorgu metni alanları (*2) " "ve sorgu penceresi (*1.25) için bu değerin önemi belirtilecektir." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Metin alanı satırları" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 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:784 +#: libraries/config/messages.inc.php:786 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Varsayılan başlık" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 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:788 +#: libraries/config/messages.inc.php:790 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:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7486,28 +7495,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Gönderme dizini" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Tüm veritabanı içinde aramaya izin verir." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Veritabanı aramayı kullan" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7515,26 +7524,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:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Ayarlarda Geliştirici sekmesini etkinleştir" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Son sürümü kontrol et" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 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:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7546,11 +7555,11 @@ msgstr "" "doğrudan internet erişimi yoksa buna ihtiyacınız olur. Biçimi: " "\"anamakineadı:bağlantınoktası\"." -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Proksi url'si" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7560,19 +7569,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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Proksi kullanıcı adı" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Proksi ile kimlik doğrulaması için parola." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Proksi parolası" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7580,35 +7589,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 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:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "ReCaptcha için ortak anahtar" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 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:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "ReCaptcha için özel anahtar" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 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:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Hata raporlarını gönder" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." @@ -7616,11 +7625,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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "Enter konsolda sorguları çalıştırır" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." @@ -7628,7 +7637,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:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Sıfır Yapılandırması kipini etkinleştir" @@ -7648,44 +7657,44 @@ msgstr "HTTP kimlik doğrulaması" msgid "Signon authentication" msgstr "Oturumu açma kimlik doğrulaması" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "VERİ YÜKLE kullanarak CSV" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "OpenDocument Hesap Tablosu" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Hızlı" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Özel" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Veritabanı dışa aktarma seçenekleri" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excel için CSV" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenDocument Metni" @@ -7765,7 +7774,6 @@ msgid "New page" msgstr "Yeni sayfa" #: libraries/db_designer.lib.php:297 libraries/db_designer.lib.php:300 -#| msgid "Save page" msgid "Save page as" msgstr "Sayfayı farklı kaydet" @@ -7892,20 +7900,20 @@ msgstr "Arabelleklenmemiş sonuç grubunda satırlar sayılamıyor" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Parola yok" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Parola:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Parola tekrarı:" @@ -8043,8 +8051,8 @@ msgstr ", @TABLE@ tablo adı olacaktır" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman " "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler " @@ -8214,12 +8222,10 @@ msgstr "" "başlayarak atla:" #: libraries/display_import.lib.php:332 -#| msgid "Options" msgid "Other Options:" msgstr "Diğer Seçenekler:" #: libraries/display_import.lib.php:338 -#| msgid "Disable foreign key checks" msgid "Disable foreign key check" msgstr "Dış anahtar kontrolünü etkisizleştir" @@ -8603,8 +8609,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi " "bulunabilir." @@ -9072,7 +9078,7 @@ msgstr "Oturumu kapat" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin belgeleri" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Gezinti panelini yeniden yükle" @@ -9758,8 +9764,8 @@ msgstr "%s'e Hoş Geldiniz" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " "tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz." @@ -9990,7 +9996,7 @@ msgstr "İlk satır içine sütun adlarını koy:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Anamakine:" @@ -11002,22 +11008,22 @@ msgstr "" "olun. Eğer değilseniz lütfen aşağıdaki satırı [mysqld] bölümü içine ekleyin:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Kullanıcı adı:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Kullanıcı Adı" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Parola" @@ -11045,10 +11051,10 @@ msgstr "Sunucu ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Anamakine" @@ -11062,38 +11068,38 @@ msgstr "" "şekilde başlar." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Herhangi anamakine" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Yerel" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Bu Anamakine" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Herhangi kullanıcı" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Metin alanını kullan:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Anamakine Tablosu kullan" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11102,7 +11108,7 @@ msgstr "" "tablosunda saklanan değerler kullanılır." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Parola tekrarı" @@ -11835,7 +11841,7 @@ msgstr "Yok" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "Kullanıcı grubu" @@ -11904,14 +11910,14 @@ msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Not: MySQL yetki adları İngilizce olarak belirtilir." @@ -11920,7 +11926,7 @@ msgid "Administration" msgstr "Yönetim" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Genel yetkiler" @@ -11929,7 +11935,7 @@ msgid "Global" msgstr "Genel" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" @@ -11948,18 +11954,18 @@ msgstr "" "Yetki tablolarını yeniden yüklemeden yeni kullanıcıların ve yetkilerin " "eklenmesine izin verir." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Oturum Açma Bilgisi" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Metin alanını kullan" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -11967,214 +11973,214 @@ msgstr "" "Hesap zaten aynı kullanıcı adıyla mevcut ancak farklı bir anamakine adı " "olması mümkün." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Parolayı değiştirme" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s için parola başarılı olarak değiştirildi." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "%s için yetkileri geri aldınız." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Kullanıcı ekle" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Kullanıcı için veritabanı" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" veritabanı üzerindeki tüm yetkileri ver." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" veritabanına erişimi olan kullanıcılar" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Kullanıcı eklendi." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Kullanıcı" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Onaylı" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "Kullanıcıları görüntülemek için yetersiz yetki." -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Kullanıcı bulunamadı." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Herhangi" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "genel" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "Veritabanına özgü" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "joker" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "tabloya özgü" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Yetkileri düzenle" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Geri al" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Kullanıcı grubunu düzenle" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… eski olanı sakla." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… eski olanı kullanıcı tablolarından sil." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… eski olandan bütün aktif yetkileri geri al ve sonra da sil." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "… eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden yükle." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Sütuna özgü yetkiler" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "Aşağıdaki veritaban(lar)ına yetkileri ekle:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "_ ve % jokerleri harfi harfine kullanılmak için \\ ile doldurun." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Aşağıdaki tabloya yetkileri ekle:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Seçili kullanıcıları kaldır" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Kullanıcılardan tüm aktif yetkileri geri al ve sonra da sil." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Silmek için kullanıcı seçilmedi!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Yetkiler yeniden yükleniyor" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Seçili kullanıcılar başarılı olarak silindi." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "%s için yetkileri güncellediniz." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "%s siliniyor" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "%s kullanıcısı zaten var!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "%s için yetkiler" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Yeni" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Yetkileri düzenle:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." @@ -12182,28 +12188,28 @@ msgstr "" "Not: Şu anda oturum açtığınız kullanıcının yetkilerini düzenlemeye " "çalışıyorsunuz." -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Kullanıcılara genel bakış" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki " "tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse " "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." @@ -13567,8 +13573,8 @@ msgid "" "May be approximate. Click on the number to get the exact count. See " "[doc@faq3-11]FAQ 3.11[/doc]." msgstr "" -"Yaklaşık olabilir. Tam sayıyı almak için sayının üzerine tıklayın. [doc@faq3-" -"11]SSS 3.11[/doc]'e bakın." +"Yaklaşık olabilir. Tam sayıyı almak için sayının üzerine tıklayın. " +"[doc@faq3-11]SSS 3.11[/doc]'e bakın." #: libraries/structure.lib.php:862 libraries/structure.lib.php:2346 #: libraries/tbl_printview.lib.php:324 @@ -13987,19 +13993,19 @@ msgstr "İndeks tercihi:" msgid "Key block size:" msgstr "Anahtar blok boyutu:" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "İndeks türü:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "Ayrıştırıcı:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Yorum:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "Yen.düzenleme için sürükleyin" @@ -14336,8 +14342,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. %" -"sKur programcığı%s kullanarak." +"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. " +"%sKur programcığı%s kullanarak." #: prefs_manage.php:321 msgid "Save to browser's storage" @@ -15025,8 +15031,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Boş sorgu önbellek belleğinin, toplam sorgu önbelleği boyutuna şu anki oranı " "%%%s. Bu %%80'in üzerinde olmalıdır" @@ -15177,8 +15183,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "Tüm sıralamaların %%%s'i geçici tablolara sebep olur, bu değer %%10'dan " "düşük olmalıdır." @@ -17005,12 +17011,12 @@ msgstr "concurrent_insert 0'a ayarlı" #~ "Eğer D işlenirse, varsayılan 0'dır. Eğer M işlenirse, varsayılan 10'dur." #~ msgid "" -#~ "A small (single-precision) floating-point number. Allowable values are -" -#~ "3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to " +#~ "A small (single-precision) floating-point number. Allowable values are " +#~ "-3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to " #~ "3.402823466E+38." #~ msgstr "" -#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler -" -#~ "3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den " +#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler " +#~ "-3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den " #~ "3.402823466E+38'e." #~ msgid "" diff --git a/po/tt.po b/po/tt.po index 14d8c5fe49..2647ffd20b 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-05 10:35+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar \n" +"Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tt\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.0-dev\n" @@ -68,7 +68,7 @@ msgstr "Tüşämä açıqlaması" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -94,7 +94,7 @@ msgstr "Alan iseme" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -150,8 +150,8 @@ msgid "Links to" msgstr "Bonı belän bäyläneş" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -180,13 +180,13 @@ msgstr "Töp" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -209,13 +209,13 @@ msgstr "Yuq" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -271,14 +271,14 @@ msgstr "" "qabızu öçen, %sbonda çirtäse%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Tüşämä" @@ -291,7 +291,7 @@ msgid "Rows" msgstr "Kerem" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Küläme" @@ -394,9 +394,9 @@ msgstr "Torış" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -610,15 +610,15 @@ msgstr "Yaña qullanuçı östäw" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -653,8 +653,8 @@ msgstr "Tulayım östise" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -729,7 +729,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Kire" @@ -753,7 +753,7 @@ msgid "General Settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Sersüz üzgärtü" @@ -846,7 +846,7 @@ msgstr "Söreme turında" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Qullanma" @@ -1128,7 +1128,7 @@ msgstr "Tezeş" msgid "Edit Index" msgstr "Kiläse yazma üzgärtü" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" @@ -1166,7 +1166,7 @@ msgstr "Kimendä berär alan kertäse." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1203,12 +1203,12 @@ msgstr "Host adı buş!" msgid "The user name is empty!" msgstr "Atama buş!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Sersüzeñ buş!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" @@ -1431,7 +1431,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1736,7 +1736,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1981,7 +1981,7 @@ msgstr "SQL-soraw" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2255,7 +2255,7 @@ msgstr "Data pointer olılığı" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Qarama" @@ -2445,7 +2445,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Barısın kürsät" @@ -2555,7 +2555,7 @@ msgstr "Tezeşlär" msgid "Show hidden navigation tree items." msgstr "Sırlı kürsät" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy msgid "Link with main panel" @@ -3119,16 +3119,16 @@ msgid "Delete" msgstr "Sal" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3263,7 +3263,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3717,8 +3717,8 @@ msgstr "SQL-sorawıñ uñışlı eşkärtelde" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3756,6 +3756,7 @@ msgstr "Saylanğannı:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3771,12 +3772,12 @@ msgstr "Üzgärt" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3975,7 +3976,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -3990,11 +3991,11 @@ msgstr "Qaraş" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -4010,7 +4011,7 @@ msgstr "Tözeleş" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4036,9 +4037,9 @@ msgstr "Östäw" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Xoquqlar" @@ -4101,9 +4102,9 @@ msgid "Central columns" msgstr "Add/Delete Field Columns" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Biremleklär" @@ -4228,7 +4229,7 @@ msgid "Recent" msgstr "Awdar" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4307,7 +4308,7 @@ msgstr "Tezü" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4687,14 +4688,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4951,7 +4952,7 @@ msgstr "Max: %s%s" msgid "MySQL said: " msgstr "MySQL qaytarışı: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL Centekläw" @@ -4963,7 +4964,7 @@ msgstr "SQL Centeklämäskä" msgid "Without PHP Code" msgstr "PHP Kodısız" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP-Kod yasa" @@ -5082,13 +5083,13 @@ msgstr "Açıqlama" msgid "Use this value" msgstr "Bu bäyä belän" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5515,7 +5516,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5878,78 +5879,90 @@ msgstr "" msgid "Default table tab" msgstr "Biremlekne bolay atap quy" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Tüşämä/alan isemnären kirequote eçenä salası" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Tüşämä/alan isemnären kirequote eçenä salası" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Tüşämä tözeleşenä küzätü" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Tüşämä tözeleşenä küzätü" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Tüşämä eşkärtü" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Cömlä" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Biremgä saqlıysı" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 #, fuzzy msgid "Character set of the file" msgstr "Şul biremneñ bilgelämäse:" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Tözeleş" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Qısu" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5961,75 +5974,75 @@ msgstr "Qısu" msgid "Put columns names in the first row" msgstr "Berençe yulda alannarnıñ iseme çığarası" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Alan yaptıruçı bilge" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Alan uzdıru bilgese" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "NULL'nı almaştırası:" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Yul ara bilgese" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Yul ara bilgese" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel söreme" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 #, fuzzy msgid "Database name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 #, fuzzy msgid "Server name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 #, fuzzy msgid "Table name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6040,648 +6053,648 @@ msgstr "Birem adınıñ tözeleşe" msgid "Dump table" msgstr "%s tüşämä" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Tüşämä başlığın östise" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Tüşämä başlığı" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Tüşämä dawamınıñ başlığı" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Açqıç yazması" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME-törläre" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Bäyläneşlär" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Çığaru ısulı" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Birem bar bulsa, östän yazdırası" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 #, fuzzy msgid "Remember file name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Tüşämä/alan isemnären kirequote eçenä salası" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL, kileşterü ısulı" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Yaratılu/Üzgärelü/Tikşerü çaqları" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Kötterep östise" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Yat tezeş tikşerüen sünderep" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "%s biremlegendä yaña tüşämä yaratu" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "%s östäw" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "\"IGNORE\" belän kertäse" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Kilgän soraw külämeneñ öske küläme" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Export type" msgstr "Çığaru ısulı" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Transaksi eçendä ütkärep" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 #, fuzzy msgid "Export time in UTC" msgstr "Çığaru ısulı" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Automatic recovery mode" msgid "Customize browse mode." msgstr "Üzennän tözälü ısulı" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy msgid "Customize default options." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy msgid "Customize edit mode." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Export defaults" msgstr "Biremdän alu" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy msgid "Customize default export options." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Ürçet" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 #, fuzzy msgid "Import defaults" msgstr "Biremdän alu" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "Customize default common import options." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy msgid "Databases display options." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy msgid "Customize appearance of the navigation panel." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Serverlär" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy msgid "Servers display options." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy msgid "Tables display options." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Indexes" msgid "Main panel" msgstr "Tezeşlär" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Bitneñ sanı:" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Customize query window options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Qullanma" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Authentication settings." msgstr "Bäyläneşlär" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "MySQL connection collation" msgid "Enter server connection parameters." msgstr "MySQL-totaşunıñ tezü cayı" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Customize export options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 #, fuzzy msgid "Customize import defaults" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy msgid "Customize navigation panel" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy msgid "Customize main panel" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 #, fuzzy msgid "SQL queries" msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 #, fuzzy msgid "SQL Query box" msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy msgid "SQL queries settings." msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 #, fuzzy msgid "Startup" msgstr "Torış" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy msgid "Customize startup page." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "Qullanuçı biremlege" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "Qullanuçı biremlege" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Tabs" msgstr "Tüşämä" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Bäyläneşlär sxeme" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Qäğäz zuqlığı" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Bu mätennän" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy msgid "Customize text input fields." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Customize default options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Yat tezeş tikşerüen sünderep" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Yöklänğan birem tözeleşe" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "LOCAL digän süz qullanıp" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Berençe yulda alannarnıñ iseme çığarası" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start." msgstr "Baştan ütep kitäse yazma sanı" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Number of inserted rows" msgstr "Tezelgän yazma sanı bu." -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6689,161 +6702,161 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of databases displayed in database list." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Maximum databases" msgstr "Biremleklär yuq" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "Tezü öçen waqıtlı birem olılığın çıläw" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of tables displayed in table list." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Memory limit" msgstr "Resurs çikläwläre" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show grid" msgid "Show databases navigation as tree" msgstr "Sırlı kürsät" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy msgid "Show logo in navigation panel." msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "The number of tables that are open." msgid "" @@ -6851,968 +6864,968 @@ msgid "" "display a filter box." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of items to display the filter box" msgstr "Açıq toruçı tüşämä sanı." -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of databases to display the database filter box" msgstr "Açıq toruçı tüşämä sanı." -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 #, fuzzy msgid "Database tree separator" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "Tüşämä başlığı" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "The number of tables that are open." msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy msgid "Recently used tables" msgstr "Tüşämä tikşerü" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Tüşämä eçtälegen bolay tezäse" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "Tüşämä başlığı" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tüşämä adın üzgärtü" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, 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:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Tözätü cebe" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational schema" msgid "Relational display" msgstr "Bäyläneşlär sxeme" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy msgid "For display Options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 #, fuzzy msgid "Save directory" msgstr "Biremnär törgäge" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Sessi bäyäse" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy msgid "Authentication method to use." msgstr "Bäyläneşlär" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, 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:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 #, fuzzy msgid "Connection type" msgstr "Totaşular" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Any host" msgid "Control host" msgstr "Bar bulğan host" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Any host" msgid "Control port" msgstr "Bar bulğan host" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 #, fuzzy msgid "Hide databases" msgstr "Biremleklär yuq" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 #, fuzzy msgid "Server hostname" msgstr "server adı" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns table" msgstr "Add/Delete Field Columns" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, 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:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "biremlek adı" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 #, fuzzy msgid "Server port" msgstr "Server ID'e" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Tüşämä centekläw" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Üzgärmälär" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 #, fuzzy msgid "Relation table" msgstr "Tüşämä tözätü" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 #, fuzzy msgid "Server socket" msgstr "Server Saylaw" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Buy Açıqlamasın Kürsätäse" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Tüşämä kisäklären berläşterü" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Cömlä" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Üzennän tözälü ısulı" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Tüşämä qullanıp" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Host Tüşämä eçennän" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show PHP information" msgid "Show Creation timestamp" msgstr "PHP turında" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Açıq tüşämä tezmäse" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Sırlı kürsät" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 #, fuzzy msgid "Show SQL queries" msgstr "Tulı Sorawlar Kürsät" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy msgid "Retain query box" msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:764 -msgid "Allow to display database and table statistics (eg. space usage)." -msgstr "" - -#: libraries/config/messages.inc.php:765 -#, fuzzy -msgid "Show statistics" -msgstr "Kerem Nöfüse" - #: libraries/config/messages.inc.php:766 -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:767 #, fuzzy +msgid "Show statistics" +msgstr "Kerem Nöfüse" + +#: libraries/config/messages.inc.php:768 +msgid "" +"Mark used tables and make it possible to show databases with locked tables." +msgstr "" + +#: libraries/config/messages.inc.php:769 +#, fuzzy msgid "Skip locked tables" msgstr "Açıq tüşämä tezmäse" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Add/Delete Field Columns" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy msgid "Default title" msgstr "Biremlekne bolay atap quy" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7820,53 +7833,53 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 #, fuzzy msgid "Upload directory" msgstr "Biremnär törgäge" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7874,85 +7887,85 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy msgid "Proxy username" msgstr "Atama:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Sersüz" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy msgid "Send error reports" msgstr "Server ID'e" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Enable Zero Configuration mode" @@ -7974,46 +7987,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "LOAD DATA qullanıp CSV" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Spreadsheet" msgstr "Qullanma" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV bireme, MS Excel öçen" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Documentation" msgid "OpenDocument Text" @@ -8264,20 +8277,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Sersüzsez" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Sersüz:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8446,8 +8459,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8987,8 +9000,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9476,7 +9489,7 @@ msgstr "Çığış" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin qullanması" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy msgid "Reload navigation panel" msgstr "Biremlek saqlaw köyläneşe" @@ -10170,8 +10183,8 @@ msgstr "%s siña İsäñme di" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10436,7 +10449,7 @@ msgstr "Berençe yulda alannarnıñ iseme çığarası" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11476,7 +11489,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11484,16 +11497,16 @@ msgstr "İreşü iseme" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "İreşü iseme" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Sersüz" @@ -11522,10 +11535,10 @@ msgstr "Server ID'e" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Host" @@ -11537,47 +11550,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Bar bulğan host" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Cirle" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Bu Sanaq" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Törle qullanuçı" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Bu mätennän" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Host Tüşämä eçennän" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Qabatla" @@ -12385,7 +12398,7 @@ msgstr "Buş" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12453,14 +12466,14 @@ msgstr "Limits the number of new connections the user may open per hour." #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12471,7 +12484,7 @@ msgid "Administration" msgstr "İdärä" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Töp xoquq" @@ -12482,7 +12495,7 @@ msgid "Global" msgstr "ğömümi" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" @@ -12500,277 +12513,277 @@ msgid "" msgstr "" "Allows adding users and privileges without reloading the privilege tüşämä." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Kereş Turında" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Bu mätennän" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Sersüzen üzgärtäse tügel" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Törle qullanuçı" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Qullanuçı biremlege" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, fuzzy, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Qullanuçı" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Xoquq" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Qullanuçı yuq." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Törle" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "ğömümi" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "almaşbilge" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "berär biremlekkä qağılışlı" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Xoquqlar Üzgärtü" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Töşer" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit next row" msgid "Edit user group" msgstr "Kiläse yazma üzgärtü" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Kiläse biremlek öçen xoquqlar östäw" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "_ belän % bilgelären şul kileş kenä qullanu öçen \\ belän ütkärergä kiräk." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Kiläse tüşämä öçen xoquqlar östäw" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Saylanğan qullanuçı beterü" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Qullanuçı xoquqların awdarıp beteräse." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Beteräse qullanuçılar saylanmağan!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Bu xoquqlarnı yöklä" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "\"%s\" Beterü" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" atlı qullanuçı bar inde!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Xoquqlar" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Xoquqlar Üzgärtü" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Qullanuçılar tezmäse" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server " "qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege " "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Yana qullanuçı östälände." @@ -14575,22 +14588,22 @@ msgstr "Tezeş adı :" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Tezeş töre :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Qullanuçı" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy msgid "Comment:" msgstr "Açıqlama" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15632,8 +15645,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15765,8 +15778,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -16755,8 +16768,8 @@ msgstr "" #~ "installed the necessary PHP extensions as described in the %sdocumentation" #~ "%s." #~ msgstr "" -#~ "SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %" -#~ "squllanmada%s uqıp bula." +#~ "SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında " +#~ "%squllanmada%s uqıp bula." #~ msgid "Query took %01.4f sec" #~ msgstr "Soraw eşkärtü %01.4f sek aldı" diff --git a/po/ug.po b/po/ug.po index 40f0443f17..263f4613f6 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,15 +6,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2013-11-25 15:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur \n" +"Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.9-dev\n" @@ -73,7 +73,7 @@ msgstr "جەدۋەل ئىزاھى" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -97,7 +97,7 @@ msgstr "سۆزلەم" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -153,8 +153,8 @@ msgid "Links to" msgstr "ئۇلانما" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -183,13 +183,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -212,13 +212,13 @@ msgstr "يوق" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -270,18 +270,18 @@ msgstr "ساندان %s غا كۆچۈرۈلدى %s" msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "جەدۋەل" @@ -294,7 +294,7 @@ msgid "Rows" msgstr "سەپ سانى" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "ھەجىم" @@ -393,9 +393,9 @@ msgstr "ھالەت" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -601,15 +601,15 @@ msgstr "مەجبۇرى قوشۇش" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -642,11 +642,11 @@ msgstr "" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." @@ -723,7 +723,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "قايتىش" @@ -746,7 +746,7 @@ msgid "General Settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "پارولنى ئۆزگەرتىش" @@ -841,7 +841,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "قوللانما" @@ -923,8 +923,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." #: index.php:549 msgid "" @@ -1105,7 +1105,7 @@ msgstr "تېزىسلار" msgid "Edit Index" msgstr "قىستۇرۇش" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Add %s column(s) to index" @@ -1141,7 +1141,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1176,12 +1176,12 @@ msgstr "مۇلازىمىتېر ئىسمى بوشكەن!" msgid "The user name is empty!" msgstr "قوللانغۇچى ئىسمى بوشكەن!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "پارول بوشكەن!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!" @@ -1398,7 +1398,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1704,7 +1704,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1948,7 +1948,7 @@ msgstr "SQL سورىقى" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2214,7 +2214,7 @@ msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىك #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2403,7 +2403,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" @@ -2511,7 +2511,7 @@ msgstr "تېزىسلار" msgid "Show hidden navigation tree items." msgstr "تېزىسلار" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Indexes" @@ -3033,16 +3033,16 @@ msgid "Delete" msgstr "ئۆچۈرۈش" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3176,7 +3176,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3619,8 +3619,8 @@ msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." #: libraries/DisplayResults.class.php:4560 @@ -3656,6 +3656,7 @@ msgstr "تاللانغىنى:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3671,12 +3672,12 @@ msgstr "ئۆزگەرتتىش" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3875,7 +3876,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "مۇلازىمىتېر" @@ -3890,11 +3891,11 @@ msgstr "قاراش" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3910,7 +3911,7 @@ msgstr "تۈزۈلىشى" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3936,9 +3937,9 @@ msgstr "قىستۇرۇش" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "ھۇقۇقى" @@ -4000,9 +4001,9 @@ msgid "Central columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "ساندان" @@ -4121,7 +4122,7 @@ msgid "Recent" msgstr "ھادىسە" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Tracked tables" msgid "Favorite tables" @@ -4199,7 +4200,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4573,14 +4574,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4836,7 +4837,7 @@ msgstr "ئەڭ چوڭ:%s%s" msgid "MySQL said: " msgstr "MySQL جاۋابى: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL ئىزاھى" @@ -4848,7 +4849,7 @@ msgstr "SQL ئىزاھىىدىن ئاتلاش" msgid "Without PHP Code" msgstr "PHP كودى يوق" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" @@ -4972,13 +4973,13 @@ msgstr "ئىزاھات" msgid "Use this value" msgstr "مۇشۇ قىممەتنى ئىشلىتىش" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5392,7 +5393,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5754,75 +5755,83 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 #, fuzzy #| msgid "Include table caption" msgid "Whether the table structure actions should be hidden." msgstr "ئۆزئىچىگە ئالغان جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Include table caption" msgid "Hide table structure actions" msgstr "ئۆزئىچىگە ئالغان جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add constraints" msgid "Use %s statement" msgstr "مەجبۇرى قوشۇش" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "ھۆججەتنى باشقا ساقلاش" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "فورماتلاش" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "پىرىسلاش" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5832,72 +5841,72 @@ msgstr "پىرىسلاش" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" msgstr "مەزمۇن ئايرىش بەلگىسى" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" msgstr "مەزمۇنئايلاندۇرۇش بەلگىسى" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "نى ئالماشتۇرۇش ئۈچۈنNULL " -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel نۇسخىسى" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5909,620 +5918,620 @@ msgstr "" msgid "Dump table" msgstr "%s جەدۋەل" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "ئۆزئىچىگە ئالغان جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "داۋاملاشتۇرىدىغان جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "ئاچقۇچلۇق ئېمزا" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIMEشەكلى" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "مۇناسىۋىتى" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "چىقىرىش" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "مەۋجۇت ھۆججەت ئۈستىدىن يېزىش" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQLئۆز ئىچىگە ئالغان شەكلى" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Create table on database %s" msgid "Export views as tables" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "قوشۇلغىنى %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "چىقىرىش" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Automatic recovery mode" msgid "Customize browse mode." msgstr "ئاپتۇماتىك ئەسلىگە كەلتۈرۈش شەكلى" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "ھاسىللاش" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Database comment:" msgid "Databases display options." msgstr "ساندان ئىزاھاتى:" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Table caption" msgid "Tables display options." msgstr "جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Indexes" msgid "Main panel" msgstr "تېزىسلار" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Authenticating…" msgid "Authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authenticating…" msgid "Authentication settings." msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "PBMS connection failed:" msgid "Enter server connection parameters." msgstr "PBMS ئۇلىنالمىدى:" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "General relation features" msgid "SQL queries settings." msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "ساندان" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "ساندان" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "PDF تىزىىسىنى كۆرسىتىش" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "قەغەزنىڭ چوڭ-كىچىكلىكى" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 #, fuzzy #| msgid "Columns terminated by" msgid "Column names in first row" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6530,1084 +6539,1084 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Indexes" msgid "Show databases navigation as tree" msgstr "تېزىسلار" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Table caption" msgid "Show logo in navigation panel." msgstr "جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table caption" msgid "Enable navigation tree expansion" msgstr "جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "ئىزلانمىغان جەدۋەللەر" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Table caption" msgid "Table navigation bar" msgstr "جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key default sort order" msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "ئەسلىگە كەلتۈرۈش يۇلى" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relations" msgid "Relational display" msgstr "مۇناسىۋىتى" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Table caption" msgid "For display Options" msgstr "جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authenticating…" msgid "Authentication method to use." msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Compress connection to MySQL server." msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns table" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ساندان ئىسمى" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "جەدۋەل تەھلىلى" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Tracked tables" msgid "Favorites table" msgstr "ئىزلانغان جەدۋەل" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "جەدۋەللەرنى ئىشلىتىش" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Indexes" msgid "Show hint" msgstr "تېزىسلار" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 msgid "" +"Defines whether SQL queries generated by phpMyAdmin should be displayed." +msgstr "" + +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" +msgstr "" + +#: libraries/config/messages.inc.php:764 +msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "SQL query" msgid "Retain query box" msgstr "SQL سورىقى" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ئەندىز" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -7615,52 +7624,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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,84 +7677,84 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username:" msgid "Proxy username" msgstr "ئابۇنىت ئىسمى:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "پارول" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Enable Zero Configuration mode" @@ -7775,46 +7784,46 @@ msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" msgid "Signon authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "OpenOffice جەدىۋېلى" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excel دىكى CSVشەكلى" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8062,20 +8071,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "پارول يوق" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "شىفىر" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -8235,8 +8244,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8766,8 +8775,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9248,7 +9257,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin ھۆججىتى" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Table caption" msgid "Reload navigation panel" @@ -9927,8 +9936,8 @@ msgstr "%s خۇش كەلدىڭىز" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -10185,7 +10194,7 @@ msgstr "خەت ئايرىش بەلگىسى" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11156,7 +11165,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "Username:" msgid "User name:" @@ -11164,16 +11173,16 @@ msgstr "ئابۇنىت ئىسمى:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "پارول" @@ -11203,10 +11212,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "ئاساسىي ماشىنا" @@ -11218,45 +11227,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "قايتا كىرگۈزىش" @@ -12049,7 +12058,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12116,14 +12125,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12132,7 +12141,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -12141,7 +12150,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -12158,260 +12167,260 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Add %s" msgid "Add user" msgstr "قوشۇلغىنى %s" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Privileges" msgid "Edit Privileges:" msgstr "ھۇقۇقى" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -14144,23 +14153,23 @@ msgstr "تېزىسلار" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "Username:" msgid "Parser:" msgstr "ئابۇنىت ئىسمى:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "ئىزاھات" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15195,8 +15204,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15327,8 +15336,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/uk.po b/po/uk.po index fa82dc8915..a3c8cc1eb3 100644 --- a/po/uk.po +++ b/po/uk.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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-01-02 17:07+0200\n" "Last-Translator: Сергій Педько \n" "Language-Team: Ukrainian \n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.2-dev\n" #: changelog.php:36 license.php:28 @@ -68,7 +68,7 @@ msgstr "Коментарі до таблиці:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -92,7 +92,7 @@ msgstr "Стовпчик" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -148,8 +148,8 @@ msgid "Links to" msgstr "Посилання на" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -178,13 +178,13 @@ msgstr "Первинний" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -207,13 +207,13 @@ msgstr "Ні" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -262,14 +262,14 @@ msgid "" msgstr "Сховище конфігурації phpMyAdmin деактивовано. %sДовідайтесь чому%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Таблиця" @@ -282,7 +282,7 @@ msgid "Rows" msgstr "Рядки" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Розмір" @@ -373,9 +373,9 @@ msgstr "Стан" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -573,15 +573,15 @@ msgstr "Додати геометрію" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -614,8 +614,8 @@ msgstr "Неповні параметри" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Імовірно ви намагаєтесь завантажити занадто великий файл. Будь ласка, " "зверніться до %sдокументації%s для знаходження шляхів вирішення цієї " @@ -660,8 +660,8 @@ msgid "" "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" "Немає даних для імпорту. Не було вказано назву файлу або його розмір " -"перевищив допустимий максимум для вашої PHP конфігурації. Дивіться [doc@faq1-" -"16]FAQ 1.16[/doc]." +"перевищив допустимий максимум для вашої PHP конфігурації. Дивіться " +"[doc@faq1-16]FAQ 1.16[/doc]." #: import.php:554 msgid "" @@ -704,7 +704,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Назад" @@ -728,7 +728,7 @@ msgid "General Settings" msgstr "Загальні налаштування" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Змінити пароль" @@ -803,7 +803,7 @@ msgstr "Відомості про версію:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Документація" @@ -1067,7 +1067,7 @@ msgstr "Додати Індекс" msgid "Edit Index" msgstr "Редагувати Індекс" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "Додати до індексу %s стовпчик(ів)" @@ -1094,7 +1094,7 @@ msgstr "Необхідно додати принаймні один стовпч #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "Попередній перегляд SQL" @@ -1123,12 +1123,12 @@ msgstr "Порожнє ім'я хоста!" msgid "The user name is empty!" msgstr "Порожнє і'мя користувача!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Порожній пароль!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" @@ -1329,7 +1329,7 @@ msgstr "Будь ласка додайте щонайменше одну змі #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1383,8 +1383,8 @@ msgid "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." msgstr "" -"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за %" -"d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в " +"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за " +"%d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в " "залежності від вашої системи." #: js/messages.php:164 @@ -1618,7 +1618,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1830,7 +1830,7 @@ msgstr "Показати блок запиту" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2077,7 +2077,7 @@ msgstr "Вміст точки даних" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Ігнорувати" @@ -2256,7 +2256,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Показати все" @@ -2360,7 +2360,7 @@ msgstr "Приховати панель" msgid "Show hidden navigation tree items." msgstr "Показати приховані пункти дерева навігації." -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "Зв'язати з головною панеллю" @@ -2867,16 +2867,16 @@ msgid "Delete" msgstr "Видалити" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2994,7 +2994,7 @@ msgid "During current session" msgstr "Під час поточного сеансу" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3372,11 +3372,11 @@ msgstr "Ваш SQL запит було виконано вдало." #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Подання має щонайменше цю кількість рядків. Будь-ласка, зверніться до %" -"sдокументації%s." +"Подання має щонайменше цю кількість рядків. Будь-ласка, зверніться до " +"%sдокументації%s." #: libraries/DisplayResults.class.php:4560 #, php-format @@ -3410,6 +3410,7 @@ msgstr "З відміченими:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3425,12 +3426,12 @@ msgstr "Змінити" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3621,7 +3622,7 @@ msgstr "" "Схоже, що індекси %1$s та %2$s ідентичні, тому один із них можна видалити." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Сервер" @@ -3636,11 +3637,11 @@ msgstr "Подання" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3656,7 +3657,7 @@ msgstr "Структура" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3682,9 +3683,9 @@ msgstr "Вставити" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Привілеї" @@ -3744,9 +3745,9 @@ msgid "Central columns" msgstr "Центральні стовпчики" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Бази даних" @@ -3857,7 +3858,7 @@ msgid "Recent" msgstr "Нещодавнє" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "Улюблені таблиці" @@ -3928,7 +3929,7 @@ msgstr "Сортування" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4298,20 +4299,20 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Мале число з плаваючою крапкою, допустимі значення від-3.402823466E+38 до-" -"1.175494351E-38, 0, і від 1.175494351E-38 до 3.402823466E+38" +"Мале число з плаваючою крапкою, допустимі значення від-3.402823466E+38 " +"до-1.175494351E-38, 0, і від 1.175494351E-38 до 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Число з плаваючою крапкою подвійної точності, допустимі значення від-" -"1.7976931348623157E+308 до-2.2250738585072014E-308, 0, і від " +"Число з плаваючою крапкою подвійної точності, допустимі значення " +"від-1.7976931348623157E+308 до-2.2250738585072014E-308, 0, і від " "2.2250738585072014E-308 до 1.7976931348623157E+308" #: libraries/Types.class.php:336 @@ -4582,7 +4583,7 @@ msgstr "Максимум: %s%s" msgid "MySQL said: " msgstr "Відповідь MySQL: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Тлумачити SQL" @@ -4594,7 +4595,7 @@ msgstr "Не тлумачити SQL" msgid "Without PHP Code" msgstr "без PHP коду" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "Створити PHP код" @@ -4707,13 +4708,13 @@ msgstr "Опис" msgid "Use this value" msgstr "Використовувати це значення" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5110,7 +5111,7 @@ msgid "Set value: %s" msgstr "Встановити значення: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Відновити значення за замовчуванням" @@ -5228,8 +5229,8 @@ msgstr "" #: libraries/config/ServerConfigChecks.class.php:419 #, fuzzy, php-format #| msgid "" -#| "If using cookie authentication and %sLogin cookie store%s is not 0, %" -#| "sLogin cookie validity%s must be set to a value less or equal to it." +#| "If using cookie authentication and %sLogin cookie store%s is not 0, " +#| "%sLogin cookie validity%s must be set to a value less or equal to it." msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." @@ -5241,10 +5242,10 @@ msgstr "" #: libraries/config/ServerConfigChecks.class.php:426 #, fuzzy, php-format #| msgid "" -#| "If you feel this is necessary, use additional protection settings - %" -#| "shost authentication%s settings and %strusted proxies list%s. However, IP-" -#| "based protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#| "If you feel this is necessary, use additional protection settings - " +#| "%shost authentication%s settings and %strusted proxies list%s. However, " +#| "IP-based protection may not be reliable if your IP belongs to an ISP " +#| "where thousands of users, including you, are connected to." msgid "" "If you feel this is necessary, use additional protection settings - %shost " "authentication%s settings and %strusted proxies list%s. However, IP-based " @@ -5551,23 +5552,35 @@ msgstr "Вкладка що відображається при вході у т msgid "Default table tab" msgstr "Вкладка талиці по замовчуванню" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Візьміть таблицю та імена колонок у зворотні лапки" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Візьміть таблицю та імена колонок у зворотні лапки" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "Дії над структурою таблиці повинні бути приховані." -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "Приховати дії над структурою таблиці" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "Показати список сервера у вигляді списку, а не випадаючого меню." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Показати сервери як список" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -5575,11 +5588,11 @@ msgstr "" "Вимкнути обслуговування операцій у таблиці, таких як оптимізація або " "відновлення вибраних таблиць бази даних." -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "Вимкнути обслуговування багатьох таблиць" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." @@ -5587,39 +5600,39 @@ msgstr "" "Встановіть обмеження у секундах для виконання скріпта ([kbd]0[/kbd] - не " "обмежено)." -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Максимальний час виконання" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "Додати оператор %s" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Зберегти як файл" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Кодування файлу" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Стискання" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5629,60 +5642,60 @@ msgstr "Стискання" msgid "Put columns names in the first row" msgstr "Помістити імена колонок в перший рядок" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "Стовпчики взято в" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "Символ екранування" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "Замінити значення NULL на" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "Вилучити CRLF символи у стовбцях" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "Колонки завершуються з" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "Рядки закінчуються з" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel версія" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Шаблон імені бази даних" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Шаблон імені сервера" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Шаблон імені таблиці" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5691,137 +5704,137 @@ msgstr "Шаблон імені таблиці" msgid "Dump table" msgstr "Дамп таблиці" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Вставити заголовок таблиці" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Заголовок таблиці" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Продовжений заголовок таблиці" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Ключ підпису" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "Тип MIME" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Зв'язки" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "Метод експорту" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Зберегти на сервері" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Перезаписати існуючий файл(и)" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Запам'ятати шаблон імені файлу" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "Додати значення AUTO_INCREMENT" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "Візьміть таблицю та імена колонок у зворотні лапки" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "Режим сумісності SQL" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE опції:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Створення/Оновлення/Перевірка дати" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Використовувати вставки з затримкою" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Відключити перевірки зовнішніх ключів" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "Експорт видів як таблиць" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "Додати %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "Використовувати шістнадцятковий для BINARY і BLOB" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Використовувати ігнорування вставок" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "Синтакс що використовується коли вставляють дані" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Максимальна довжина створеного запиту" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "Тип експорту" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Помістити експорт у транзакцію" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Експорт часу у UTC" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "Застосувати захищене з'єднання коли використовуєм phpMyAdmin." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Застосувати SSL з'єднання" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5829,144 +5842,144 @@ msgstr "" "Порядок сортування елементів у випадаючому списку зовнішніх ключів; [kbd]" "вміст[/kbd] - пов'язані дані, [kbd]id[/kbd] - ключі." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Порядок елементів у випадаючому списку зовнішніх ключів" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" "Випадаючий список буде використовуватись, якщо буде представлено менше " "елементів." -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Обмеження зовнішнього ключа" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Режим перегляду" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "Налаштувати режим перегляду." -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "Налаштувати опції за замовчуванням." -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "Розробник" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "Налаштування для розробників phpMyAdmin." -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Режим редагування" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "Налаштувати режим редагування." -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Експортувати налаштування по замовчуванню" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "Налаштувати параметри експорту за замовчуванням." -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Особливості" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "Загальний" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "Встановити деякі загальновживані властивості." -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Імпортувати властивості по замовчуванню" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "Налаштувати за замовчуванням загальні параметри імпорту." -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Імпорт / експорт" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "Встанови теки імпорту та експорту та параметри стискання." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "Параметри відображення баз даних." -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "Оболонка навігації" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "Налаштувати вигляд панелі навігації." -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Сервери" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "Параметри відображення серверів." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "Параметри відображення таблиць." -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "Головна панель" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Інші параметри ядра" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "Налаштування які не вписуються більш ніде." -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "Заголовки сторінки" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5975,19 +5988,19 @@ msgstr "" "documentation[/doc] для магічних рядків, які можуть використовуватися для " "отримання спеціальних значень." -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Вікно запиту" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Встановіть параметри вікна запиту" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Безпека" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." @@ -5995,23 +6008,23 @@ msgstr "" "Будь ласка зверніть увагу, що phpMyAdmin лише інтерфейс і його можливості не " "обмежують MySQL." -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Базові налаштування" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "Аутентифікація" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "Параметри аутентифікації." -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Конфігурація сервера" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." @@ -6019,15 +6032,15 @@ msgstr "" "Розширена конфігурація сервера, не змінюйте ці параметри, якщо не знаєте для " "чого вони потрібні." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "Введіть параметри з'єднання сервера." -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "Конфігурація збереження даних" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -6037,11 +6050,11 @@ msgstr "" "до додаткових властивостей, дивись [doc@linked-tables]PhpMyAdmin " "конфігурація пам'яті[/doc] в документації." -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "Відстеження змін" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6049,108 +6062,108 @@ msgstr "" "Відстеження змін, зроблених у базі даних. Вимагає PhpMyAdmin конфігурації " "збереження даних." -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Налаштувати опції експорту" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Налаштувати імпорт властивостей по замовчуванню" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "Налаштувати панель навігації" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "Налаштувати головну панель" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL запити" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL Запит" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "Налаштувати посилання що показуються у SQL Query boxes." -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "Налаштування SQL запитів." -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Початок" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "Налаштувати початкову сторінку." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "Структура бази даних" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" "Оберіть, які деталі відображати у структурі бази даних (список таблиць)." -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "Структура таблиці" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "Налаштування для структури таблиці (перелік стовпчиків)." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Вкладки" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "Виберіть як би ви хотіли щоб вкладки працювали." -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "Відобразити схему зв'язків" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Формат паперу" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "Текстові поля" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "Налаштувати текстові поля вводу." -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! текст" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "Налаштувати опції по замовчуванню" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "Попередження" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "Відключити деякі попередження що показуються у phpMyAdmin." -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." @@ -6158,15 +6171,15 @@ msgstr "" "Включити [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] стискання для " "операцій імпорту та експорту." -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "Додаткові параметри для iconv" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6174,11 +6187,11 @@ msgstr "" "Якщо включено, PhpMyAdmin продовжує обчислення декількох запитів навіть якщо " "один із запитів не вдалий." -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ігнорувати помилки декількох виразів" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6189,28 +6202,28 @@ msgstr "" "імпорту файлів великого розміру, проте це може призвести до відхилення " "транзакції." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Частковий імпорт: дозволити переривання" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Відключити перевірки зовнішніх ключів" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "Не переривати коли виникла INSERT помилка" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Замінити дані таблиці даними з файлу" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6218,69 +6231,69 @@ msgstr "" "Формат по замовчуванню; майте на увазі, що цей список залежить від місця " "розміщення (бази даних, таблиці), і тільки SQL завжди доступний." -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Формат імпортованих файлів" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "Використовуйте ключове слово LOCAL" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Імена колонок у першому рядку" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Не імпортувати пусті рядки" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "Іипорт валют ($5.00 у 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Імпорт відсотків як десяткових чисел (12.00% у .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "Число запитів що будуть пропущені від початку." -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Частковий імпорт: пропустити запити" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Не використовувати AUTO_INCREMENT для нульових значень" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Початковий стан для слайдерів" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "Як багато рядків може бути вставлено за раз." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Кількість вставлених рядків" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" "Максимальне число символів, що показується у будь-якому не числовому стовбці " "у режимі перегляду." -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "Обмеження символів у стовбці" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6291,11 +6304,11 @@ msgstr "" "FALSE ви можете забути вилогуватись з інших серверів коли є під'єднані до " "багатьох." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Видалити всі куки під час вилоговування" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." @@ -6303,11 +6316,11 @@ msgstr "" "Визначте чи використати попередні дані для входу в режимі аутентифікації " "[kbd]cookie[/kbd]." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Використати збережене ім'я користувача" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6319,49 +6332,49 @@ msgstr "" "протягом існуючої сесії, і буде видалена, як тільки ви закриєте вікно " "браузера. Цей режим рекомендується для роботи у ненадійних умовах." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Зберігати куки авторизації" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "Визначте як довго (в секундах) дійсні куки авторизації." -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "Термін придатності кукі входу" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "Подівійний розмір поля вводу тексту для LONGTEXT стовпців." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "Збільшене поле вводу тексту для LONGTEXT" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "При відображенні SQL запиту використано максимальне число символів." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "Масимальна довжина SQL що відобразиться" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "Користувач не може встановити більше значення" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" "Максимальна кількість баз даних, які відображатимуться у списку баз даних." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Максимально баз даних" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." @@ -6369,11 +6382,11 @@ msgstr "" "Кількість елементів, які можуть бути відображені на кожній сторінці першого " "рівня дерева навігації." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "Максимальна кількість елементів на першому рівні" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." @@ -6381,11 +6394,11 @@ msgstr "" "Кількість елементів, які можуть бути відображені на кожній сторінці дерева " "навігації." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "Максимальна кількість елементів в гілці" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6393,19 +6406,19 @@ msgstr "" "Кількість рядків, відображуваних при перегляді результатів. Якщо результат " "містить більше рядків, \"Previous\" та \"Next\" посилання будуть показані." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Максимальна кількість рядків для відображення" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "Максимальна кількість таблиць що відобразиться у списку таблиць." -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Максимально таблиць" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." @@ -6413,41 +6426,41 @@ msgstr "" "Кількість байтів, що дозволяється виділяти під сценарій, наприклад. [kbd]32M" "[/kbd] ([kbd]0[/kbd] без обмежень)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Ліміт пам'яті" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "Показати приховані пункти дерева навігації." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "Показати логотип у панелі навігації." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Показати логотип" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "URL, на який веде логотип у панелі навігації." -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "URL посилання логотипу" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." @@ -6455,29 +6468,29 @@ msgstr "" "Відкрити сторінку на яку посилаємось у головному вікні ([kbd]main[/kbd]) або " "у новому ([kbd]new[/kbd])." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Ціль на яку посилається лотип" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "Показати вибір сервера у верхній частині панелі навігації." -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Показати вибір серверів" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Ціль іконки швидкого доступу" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Ціль іконки швидкого доступу" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -6485,15 +6498,15 @@ msgstr "" "Мінімальна кількість елементів (таблиць, видів, процедур та подій) для " "відображення вікна фільтру." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "Мінімальна кількість пунктів для відображення вікна фільтру" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "Мінімальна кількість баз даних для відображення вікна фільтру" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." @@ -6501,101 +6514,101 @@ msgstr "" "Групувати пункти у дереві навігації (залежить від розділювача що визначений " "нижче)." -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "Групувати елементи в дереві" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "Стрічка яка розділяє бази даних на різні рівні дерева." -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Розділювач дерева баз даних" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "Рядок, що розділяє таблиці на різні рівні дерева." -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Розділювач дерева таблиці" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Максимальна глибина дерева таблиці" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "Підсвітити сервер під курсором миші." -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Включити підсвічування" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "Чи потрібно вимкнути можливість розширення бази даних." -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "Таблична панель навігації" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" "Максимальна кількість нещодавно використаних таблиць; встановіть 0 для " "відключення." -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Максимальна кількість улюблених таблиць; встановіть 0 для відключення." -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "Таблиці, що були недавно використані" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "Посилання для редагування, копіювання та видалення." -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "Де можна відобразити посилання на рядки таблиці" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "Використати природний порядок сортування імен таблиць та баз даних." -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "Звичайний порядок" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "Використовувати лише піктограми, лише текст або все." -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "Таблична панель навігації" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" "Використовувати GZip буферизацію виводу для збільшення швидкості HTTP " "передачі." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip буферизація виводу" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6603,19 +6616,19 @@ msgstr "" "[kbd]SMART[/kbd] - тобто зворотній порядок сортування для полів, що мають " "тип TIME, DATE, DATETIME та TIMESTAMP; у іншому випадку порядок буде прямим." -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Порядок сортування за замовчуванням" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "Використовувати постійне з'єднання з MySQL." -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Постійне з’єднання" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6624,11 +6637,11 @@ msgstr "" "Вимкнути сповіщення, що відображається на сторінці структури бази даних за " "відсутності необхідних для зберігання конфігурації phpMyAdmin таблиць." -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected." @@ -6636,11 +6649,11 @@ msgstr "" "Вимкнути стандартне попередження при визначенні відмінностей версій " "бібліотеки MySQL та сервера." -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "Попередження про відмінності сервера та бібліотеки" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." @@ -6648,27 +6661,27 @@ msgstr "" "Вимкнути сповіщення, що відображається на сторінці структури бази даних за " "наявності стовпців таблиці з іменами, які є зарезервованими словами MySQL." -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "Попередження про зарезервоване слово MySQL" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "Як відображати вкладки меню" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "Як відображати різноманітні посилання дій" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "Заборонити редагування стовпців BLOB та BINARY." -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "Бінарні колонки захищені" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6679,128 +6692,128 @@ msgstr "" "використовуватись JavaScript (історію запитів буде втрачено при закритті " "вікна)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Постійна історія запитів" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "Скільки запитів зберігати в історії." -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Довжина історії запитів" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "Виберіть функції, які буде використано для перекодування." -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Механізм перекодування" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" "Коли переглядаєте таблиці, порядок сортування кожної таблиці зберігається." -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "Запам'ятати сортування таблиці" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Порядок сортування за замовчуванням" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" "Повторити заголовки кожних X комірок, [kbd]0[/kbd] відключає цю властивість." -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "Повторити заголовки" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "Стовпчик відображення зв'язків" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "Параметри відображення серверів." -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "Редагування сітки: зберегти всі відредаговані комірки зразу" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "Каталог на сервері для збереження експорту." -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Зберегти теку" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "Залиште порожнім, якщо не використовується." -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "Порядок авторизації хоста" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "Залиште порожнім для налаштувань за замовчуванням." -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "Правила авторизації хоста" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Дозволити авторизацію без паролю" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "Дозволити авторизацію для root" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Значення сесії" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "Рядок, що відображається при ідентифікації з допомогою HTTP." -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP область" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6809,19 +6822,19 @@ msgstr "" "Шлях до конфігураційного файлу [a@http://swekey.com]апаратної аутентифікації " "SweKey[/a] (не знаходиться в корні)." -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey файл конфігурації" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "Потрібний метод автентифікації." -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Тип аутентифікації" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6829,41 +6842,41 @@ msgstr "" "Залиште порожнім для вимкнення підтримки [a@http://wiki.phpmyadmin.net/pma/" "bookmark]bookmark[/a], рекомендується: [kbd]pma__bookmark[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Таблиця закладок" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Таблиця інформації про колонки" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "Стискати з'єднання до MySQL сервера." -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Стискати з’єднання" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "Спосіб з'єднання з сервером, залиште [kbd]tcp[/kbd], якщо невпевнені." -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Тип з’єднання" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Пароль виділеного користувача" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6871,11 +6884,11 @@ msgstr "" "Спеціальний користувач MySQL з обмеженими привілеями, детальніше дивіться " "[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Виділений користувач" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." @@ -6883,11 +6896,11 @@ msgstr "" "Альтернативний хост для збереження налаштувань, залиште порожнім для " "використання вже вказаного хоста." -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "Керування хостом" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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, " @@ -6897,15 +6910,15 @@ msgstr "" "залиште порожнім для порта за-замовчуванням, якщо контрольний хост " "ідентичний хосту." -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "Контрольний порт" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "Cховати бази даних, що відповідають регулярному виразу (PCRE)." -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6913,15 +6926,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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Вимкнути використання INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Приховати бази даних" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." @@ -6929,23 +6942,23 @@ msgstr "" "Залиште порожнім для відключення підтримки історії SQL запитів, " "пропонується: [kbd]pma__history[/kbd]." -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "Таблиця історії SQL запитів" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "Ім'я хоста, на якому працює MySQL сервер." -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Хост сервера" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "URL для виходу" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." @@ -6953,27 +6966,27 @@ msgstr "" "Обмежує кількість властивостей таблиці, що зберігаються в базі даних, " "застарілі записи автоматично видаляються." -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "Максимальна кількість властивостей таблиці, що зберігаються" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns table" msgstr "Центральні стовпчики" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank to disable configurable menus feature, suggested: [kbd]" @@ -6985,15 +6998,15 @@ msgstr "" "Залиште порожнім, щоб вимкнути функцію налаштовуваних меню, пропонується: " "[kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "Спробувати з'єднатись без пароля." -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "З’єднуватись без паролю" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7003,28 +7016,28 @@ msgstr "" "хочете використовувати, як звичайні літературні символи, тобто " "використовуйте [kbd]'my\\_db'[/kbd] а не [kbd]'my_db'[/kbd]." -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Показати лише перелічені бази даних" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "Залиште порожнім, якщо не використовується config auth." -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "Пароль для config auth" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF схема: сторінки таблиці" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -7035,32 +7048,32 @@ msgstr "" "Для відключення підтримки залиште порожнім. Рекомендується: [kbd]phpmyadmin[/" "kbd]." -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "Ім'я бази даних" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" "Порт, на якому MySQL сервер слухає, залиште порожнім для значення за-" "замовчуванням." -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Порт сервера" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "Нещодавно використані таблиці" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables' UI preferences across sessions, " @@ -7072,23 +7085,23 @@ msgstr "" "Для відключення можливості зберігання налаштувань інтерфейсу таблиць через " "сесії залиште поле порожнім, рекомендується: [kbd]pma__table_uiprefs[/kbd]." -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "Улюблені таблиці" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Таблиця зв'язків" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -7096,43 +7109,43 @@ msgstr "" "Дивіться [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " "types[/a] для прикладу." -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Ім'я сесії для Signon" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Signon URL-адреса" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" "Сокет, на якому MySQL сервер слухає, залиште порожнім для значення за-" "замовчуванням." -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Сокет серверу" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "Активувати SSL для з'єднання з MySQL сервером." -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "Використовувати SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "Дизайнер і PDF схема: координати таблиці" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." @@ -7140,11 +7153,11 @@ msgstr "" "Таблиця, щоб описати відображувані стовпчики, залиште порожнім для вимкнення " "підтримки; рекомендовано: [kbd]pma__table_info[/kbd]." -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "Таблиця з описами полів" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." @@ -7152,11 +7165,11 @@ msgstr "" "Для відключення можливості зберігання налаштувань інтерфейсу таблиць через " "сесії залиште поле порожнім, рекомендується: [kbd]pma__table_uiprefs[/kbd]." -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "Таблиця налаштувань користувацького інтерфейсу" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -7164,11 +7177,11 @@ msgstr "" "Чи буде при створенні бази даних, в журнал першим рядком додано вираз DROP " "DATABASE IF EXISTS." -#: libraries/config/messages.inc.php:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "Додати DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -7176,11 +7189,11 @@ msgstr "" "Чи буде при створенні бази даних, в журнал першим рядком додано вираз DROP " "DATABASE IF EXISTS." -#: libraries/config/messages.inc.php:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "Додати DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -7188,21 +7201,21 @@ msgstr "" "Чи буде при створенні вистави, в журнал першим рядком додано вираз DROP VIEW " "IF EXISTS." -#: libraries/config/messages.inc.php:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "Додати DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Визначити список виразів, які використовуються для автоматичного створення " "нових версій." -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "Стеження за виразами" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." @@ -7210,54 +7223,54 @@ msgstr "" "Залиште порожнім, щоб вимкнути функцію відстеження SQL запитів, " "пропонується: [kbd]pma__tracking[/kbd]." -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "Таблиця відстежування SQL запитів" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" "Чи механізм відстеження створює версії для таблиць і подань автоматично." -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "Автоматично створювати версії" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "Таблиця збереження налаштувань користувача" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "Таблиця користувачів" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "Таблиця груп користувачів" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7265,33 +7278,33 @@ msgstr "" "Залиште порожнім, щоб вимкнути функцію приховування/відображення " "навігаційних елементів, пропонується: [kbd]pma__navigationhiding[/kbd]." -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "Прихована таблиця навігаційних елементів" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "Прописаний користувач" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "Користувацький опис сервера. Залиште пустим, щоб вивести назву хоста." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Повна назва цього сервера" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "Чи слід відображати кнопку \"показати всі (рядки)\"." -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Дозволити відображати всі рядки" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7301,41 +7314,41 @@ msgstr "" "при ідентифікації методом [kbd]config[/kbd] із жорстко прописаним паролем; " "це не обмежує можливість виконання команди беспосередньо." -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Показати форму для зміни паролю" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Показати форму для створення бази даних" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "Відобразити або приховати стовпчик \"Час створення\" для всіх таблиць." -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "Показати час створення" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "Відобразити або приховати стовпчик \"Час оновлення\" для всіх таблиць." -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "Відобразити \"Час останнього оновлення\"" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "Відобразити або приховати стовпчик \"Час перевірки\" для всіх таблиць." -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "Відобразити \"Час перевірки\"" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." @@ -7343,27 +7356,27 @@ msgstr "" "Визначає чи в режимі редагування/вставки має на початку відображатися тип " "поля." -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "Показувати типи полів" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "Відображати поля функції у режимі редагування/вставки." -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Показувати поля функції" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "Чи показувати підказки." -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "Відображати підказки" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7371,64 +7384,64 @@ msgstr "" "Відображає посилання на [a@http://php.net/manual/function.phpinfo.php]phpinfo" "()[/a]." -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "Показувати посилання phpinfo()" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "Показувати докладну інформацію про сервер MySQL" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" "Визначає, чи потрібно відображати SQL запити, що згенеровані phpMyAdmin." -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Показувати SQL-запити" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" "Визначає, чи має залишатися вікно запиту на екрані після надсилання запиту." -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "Залишати вікно запиту" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" "Дозволити відображення статистики бази даних і таблиць (наприклад, " "використання простору)." -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Показувати статистику" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" "Позначити використані таблиці та зробити можливим відображення баз даних із " "заблокованими таблицями." -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Пропускати заблоковані таблиці" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "Виводити попередження на головній сторінці у разі виявлення Suhosin." -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Попередження про Suhosin" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7441,13 +7454,13 @@ msgstr "" "Вимкнути сповіщення, що відображається на сторінці структури бази даних за " "наявності стовпців таблиці з іменами, які є зарезервованими словами MySQL." -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "Термін придатності кукі входу" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7455,11 +7468,11 @@ msgstr "" "Розмір текстового поля в режимі редагування (у стовпцях); дане значення буде " "пріоритетним для текстових полів SQL запиту (*2) та для вікна запиту (*1.25)." -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "Стовпців у текстовому полі" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7467,31 +7480,31 @@ msgstr "" "Розмір текстового поля в режимі редагування (в рядках); дане значення буде " "пріоритетним для текстових полів SQL запиту (*2) та для вікна запиту (*1.25)." -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "Рядків у текстовому полі" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "Заголовок вікна браузера при виборі бази даних." -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "Заголовок вікна браузера за замовчуванням." -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "Заголовок по замовчуванню" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "Заголовок вікна браузера при виборі сервера." -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "Заголовок вікна браузера при виборі таблиці." -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7503,29 +7516,29 @@ msgstr "" "Forwarded-For) заголовку, що прийшов з проксі 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]." -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "Список довірених проксі для IP allow/deny" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" "Каталог на сервері, до якого ви можете завантажити файли для подальшого " "імпорту." -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Каталог відвантаження" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "Дозволити пошук по всій базі даних." -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Використовувати пошук по базі даних" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." @@ -7533,27 +7546,27 @@ msgstr "" "Коли вимкнено, користувачі не зможуть встановити жоден із зазначених нижче " "параметрів незалежно від значення прапорця праворуч." -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "Включення вкладки розробника в налаштуваннях" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Перевірити оновлення" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" "Вмикає можливість перевірки останньої версії phpMyAdmin на головній сторінці." -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7561,30 +7574,30 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "Адреса проксі" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "Ім'я користувача проксі" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "Пароль для аутентифікації на проксі." -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "Пароль проксі" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7592,53 +7605,53 @@ msgstr "" "Увімкнути [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " "стиснення для операцій імпорту та експорту." -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "Введіть ваш відкритий ключ для сервісу reCaptcha домена." -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "Відкритий ключ для reCaptcha" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "Введіть ваш закритий ключ для сервісу reCaptcha домена." -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "Закритий ключ для reCaptcha" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "Оберіть дію за замовчуванням під час надсилання звітів про помилки." -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "Надіслати звіти про помилку" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Execute" msgid "Enter executes queries in console" msgstr "Виконати" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "Увімкнути режим нульової конфігурації" @@ -7658,44 +7671,44 @@ msgstr "Авторизація за допомогою HTTP" msgid "Signon authentication" msgstr "Авторизація за допомогою Signon" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV, використовуючи LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "Відкрити документ електронної таблиці" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "Швидко" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "Звичайно" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Параметри експорту бази даних" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "CSV для даних MS Excel" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "Текст OpenDocument" @@ -7907,20 +7920,20 @@ msgstr "Не вдається підрахувати рядки у небуфе #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Без паролю" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Пароль:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "Підтвердження:" @@ -8058,13 +8071,13 @@ msgstr ", @TABLE@ буде заміщено ім'ям таблиці" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Значення обробляється функцією %1$sstrftime%2$s, завдяки чому можлива " "вставка поточної дати і часу. Додатково можуть бути використані наступні " -"підстановки: %3$s. Решта тексту залишиться без змін. Подробиці дивіться у %4" -"$sFAQ%5$s." +"підстановки: %3$s. Решта тексту залишиться без змін. Подробиці дивіться у " +"%4$sFAQ%5$s." #: libraries/display_export.lib.php:526 msgid "use this for future exports" @@ -8617,8 +8630,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Документацію і додаткову інформацію про PBXT можна знайти на %sДомашній " "сторінці PrimeBase XT%s." @@ -9081,7 +9094,7 @@ msgstr "Вийти з системи" msgid "phpMyAdmin documentation" msgstr "Документація по phpMyAdmin" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "Оновити панель навігації" @@ -9740,8 +9753,8 @@ msgstr "Ласкаво просимо до %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Ви, напевно, не створили файл конфігурації. Для його створення Ви можете " "використати %1$ssetup script%2$s." @@ -9973,7 +9986,7 @@ msgstr "Помістити імена стовпців в перший рядо #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "Хост:" @@ -11024,22 +11037,22 @@ msgstr "" "server-id. При необхідності, додайте наступний рядок в розділ [mysqld]:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Ім'я користувача:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Ім'я користувача" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Пароль" @@ -11067,10 +11080,10 @@ msgstr "ID сервера" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Хост" @@ -11084,38 +11097,38 @@ msgstr "" "даному списку." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Довільний хост" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Локальний" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Цей хост" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Довільний користувач" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "Використовувати текстове поле:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Використовувати Таблицю Хостів" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -11124,7 +11137,7 @@ msgstr "" "прописаних при конфігурації." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Підтвердження" @@ -11854,7 +11867,7 @@ msgstr "Немає" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11927,14 +11940,14 @@ msgstr "Обмежити кількість одночасних підключ #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "Примітка: назви прав MySQL задаються англійською." @@ -11943,7 +11956,7 @@ msgid "Administration" msgstr "Адміністрування" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Глобальні права" @@ -11952,7 +11965,7 @@ msgid "Global" msgstr "Глобальний" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" @@ -11970,18 +11983,18 @@ msgid "" msgstr "" "Дозволяє додавання користувачів та прав без перезавантаження таблиці прав." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Інформація авторизації" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Використовувати текстове поле" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." @@ -11989,127 +12002,127 @@ msgstr "" "Вже існує обліковий запис з таким іменем користувача, але, можливо, з іншою " "назвою хоста." -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Не змінювати пароль" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s змінено вдало." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "Ви відмінили привілеї для %s." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "Додати користувача" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "База даних для користувача" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "Створити базу даних з таким самим іменем та надати всі привілеї." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "Надати всі привілеї на те, що підпадає під шаблон (ім'я користувача\\_%)." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "Надати всі привілеї на базу даних \"%s\"." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "Користувачі, що мають доступ до \"%s\"" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "Користувача було додано." -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Користувач" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "Надати" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "Користувача не знайдено." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Довільний" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "глобальний" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "специфічний для бази даних" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "шаблон" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "специфічний для таблиці" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Редагувати привілеї" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Відмінити" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "Редагувати групу користувачів" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… зберегти попереднього." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… видалити попереднього з таблиці користувачів." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" "… анулювати всі активні привілеї попереднього користувача та видалити його " "після того." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -12117,121 +12130,121 @@ msgstr "" "… видалити попереднього з таблиці користувачів та перевантажити права після " "того." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Створити нового користувача з такими ж правами та …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Привілеї, що стосуються стовпчиків таблиці" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database:" msgid "Add privileges on the following database(s):" msgstr "Додати права для цієї бази даних:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "При використанні в імені бази даних символів нижнього підкреслення і " "відсотка необхідно екранувати їх символом \\." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "Додати привілеї для цієї таблиці:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Видалити обраних користувачів" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Відмінити всі активні привілеї користувачів та видалити їх після того." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Видалити бази даних, які мають такі ж назви, як імена користувачів." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Жодного користувача не обрано для видалення!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Перезавантаження прав" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Обраних користувачів видалено вдало." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "Ви оновили привілеї для %s." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "Видалення %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Привілеї перезавантажено вдало." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "Користувач %s вже існує!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "Привілеї для %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "Новий" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "Редагувати привілеї:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "Перегляд користувачів" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав " "MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються " "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Ви додали нового користувача." @@ -12414,8 +12427,8 @@ msgid "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" -"Увімкнення директиви general_log може збільшити навантаження на сервер на 5-" -"15%. Також пам'ятайте, що генерування статистики з журналів є досить " +"Увімкнення директиви general_log може збільшити навантаження на сервер на " +"5-15%. Також пам'ятайте, що генерування статистики з журналів є досить " "інтенсивною задачею, тому бажано вибрати лише невеликий проміжок часу, " "вимикати директиву general_log та чистити таблицю щойно в моніторингу більше " "немає потреби." @@ -14052,21 +14065,21 @@ msgstr "Розмір кешу індексу" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Тип індекса :" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Користувач:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "Коментар:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15117,8 +15130,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" "Поточне співвідношення вільної пам'яті кешу запитів до загального розміру " "кешу запитів складає %s%%. Воно має перевищувати 80%%" @@ -15275,8 +15288,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" "%s%% всіх сортувань викликає створення тимчасових таблиць, це значення має " "бути нижчим 10%%." @@ -16522,8 +16535,8 @@ msgstr "concurrent_insert встановлено у 0" #~ "For a list of available transformation options and their MIME type " #~ "transformations, click on %stransformation descriptions%s" #~ msgstr "" -#~ "Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" -#~ "sописи перетворень%s" +#~ "Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть " +#~ "%sописи перетворень%s" #~ msgid "SQL command to fetch available databases" #~ msgstr "SQL команда для вибірки доступних баз даних" @@ -17028,8 +17041,8 @@ msgstr "concurrent_insert встановлено у 0" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %" -#~ "s запитів." +#~ "Статистика запитів: З моменту запуску, до сервера було надіслано " +#~ "%s запитів." #~ msgid "Add a New User" #~ msgstr "Додати нового користувача" diff --git a/po/ur.po b/po/ur.po index aec0e2140a..f73bde24e7 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,15 +6,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-03-27 15:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu \n" +"Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.9-dev\n" @@ -74,7 +74,7 @@ msgstr "جدول تبصرات:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -98,7 +98,7 @@ msgstr "کالم" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -154,8 +154,8 @@ msgid "Links to" msgstr "ربط بطرف" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -184,13 +184,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -213,13 +213,13 @@ msgstr "نہیں" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -271,18 +271,18 @@ msgstr "کوائفیہ %1$s نام %2$s میں نقل کیا جاچکا ہے" msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -"phpMyAdmin کی تشکیل زخیرہ بند کر دی گئی ہے۔ اس بارے میں جاننے کے لیے %share%" -"s دبائیں۔" +"phpMyAdmin کی تشکیل زخیرہ بند کر دی گئی ہے۔ اس بارے میں جاننے کے لیے %share" +"%s دبائیں۔" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "جدول" @@ -296,7 +296,7 @@ msgstr "صفیں" # db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "ناپ" @@ -393,9 +393,9 @@ msgstr "حالت" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -591,15 +591,15 @@ msgstr "جیومیٹری شامل کریں" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -640,14 +640,14 @@ msgstr "داخل کرنا مکمل ہوا" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %" -"sdocumentation%s دیکھیں۔" +"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " +"%sdocumentation%s دیکھیں۔" #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -688,8 +688,8 @@ msgid "" "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" "درآمد کے لیے کوئی کوائف نہیں ملا۔ ممکن ہے کہ مسل نام بھیجا نہ گیا ہو یا مسل " -"حجم مقررہ حد سے تجاوز کر گیا ہو جو آپ کی PHP تشکیل میں ہے۔ دیکھیں[doc@faq1-" -"16]عمومی سوالات 1.16[/doc]." +"حجم مقررہ حد سے تجاوز کر گیا ہو جو آپ کی PHP تشکیل میں ہے۔ دیکھیں" +"[doc@faq1-16]عمومی سوالات 1.16[/doc]." #: import.php:554 #, fuzzy @@ -734,7 +734,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "واپس" @@ -758,7 +758,7 @@ msgid "General Settings" msgstr "عمومی ترتیبات" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "خفیہ ہندسہ تبدیل کریں" @@ -833,7 +833,7 @@ msgstr "نسخہ معلومات:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "دستاویزات" @@ -1100,7 +1100,7 @@ msgstr "اشاریے کا اضافہ" msgid "Edit Index" msgstr "تدوینِ اشاریہ" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "%s کا فیلڈ کالمز میں اضافہ کیجیئے" @@ -1137,7 +1137,7 @@ msgstr "آپ کو کم از کم ایک کالم چننا ہو گا ڈسپے #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1172,12 +1172,12 @@ msgstr "ہوسٹ نام خالی ہے!" msgid "The user name is empty!" msgstr "صارف کا نام خالی ہے!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "خفیہ لفظ خالی ہے!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "خفیہ الفاظ مشترک نہیں ہیں!" @@ -1380,7 +1380,7 @@ msgstr "براہ کرم سیریز کے باب میں کم از کم ایک مت #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1692,7 +1692,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1936,7 +1936,7 @@ msgstr "طلب خانہ دکھائیں" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2206,7 +2206,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "نظر انداز کریں" @@ -2396,7 +2396,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "تمام دکھائیں" @@ -2504,7 +2504,7 @@ msgstr "اشاریے" msgid "Show hidden navigation tree items." msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main frame" @@ -2566,8 +2566,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %" -"s, جاری کیا گیا %s." +"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ " +"%s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:501 @@ -3026,16 +3026,16 @@ msgid "Delete" msgstr "حذف" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3170,7 +3170,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3609,8 +3609,8 @@ msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." @@ -3648,6 +3648,7 @@ msgstr "مع منتخب:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3663,12 +3664,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3869,7 +3870,7 @@ msgstr "" "جائے گا۔" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "سرور" @@ -3884,11 +3885,11 @@ msgstr "نقل جدول" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3904,7 +3905,7 @@ msgstr "ساخت" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3930,9 +3931,9 @@ msgstr "داخل کریں" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3994,9 +3995,9 @@ msgid "Central columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "کوائفیے" @@ -4118,7 +4119,7 @@ msgid "Recent" msgstr "دوبارہ سیٹ کریں" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Count tables" msgid "Favorite tables" @@ -4198,7 +4199,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4580,14 +4581,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4845,7 +4846,7 @@ msgstr "زیادہ سے زیادہ: %s%s" msgid "MySQL said: " msgstr "MySQL نے کہا: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL کی تفصیل بتائیں" @@ -4857,7 +4858,7 @@ msgstr "SQL وضاحت کو چھوڑیں" msgid "Without PHP Code" msgstr "PHP کوڈ کے بغیر" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" @@ -4976,13 +4977,13 @@ msgstr "تفصیل" msgid "Use this value" msgstr "یہ قدر استعمال کریں" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5409,7 +5410,7 @@ msgid "Set value: %s" msgstr "قدر سیٹ کریں: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "طے شدہ قدر بحال کریں" @@ -5830,37 +5831,49 @@ msgstr "ایک جدول میں داخل ہوتے ہوئے جو جدول دکھا msgid "Default table tab" msgstr "طے شدہ جدول کی جدول" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "جدول اور کالم نام کو الٹے کوٹ سے بند کریں" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "جدول اور کالم نام کو الٹے کوٹ سے بند کریں" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Include table caption" msgid "Whether the table structure actions should be hidden." msgstr "جدول عنوان شامل کریں" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Include table caption" msgid "Hide table structure actions" msgstr "جدول عنوان شامل کریں" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "سرور فہرست کو ڈراپ ڈاؤن کی بجائے لڑی میں دکھائیں۔" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "سرور کو بطور لڑی دکھائیں" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -5871,39 +5884,39 @@ msgid "" msgstr "" "سکرپٹ کو چلنے کے لیے سیکنڈ میں تعداد بتائیں ([kbd]0[/kbd] بغیر حد کے لیے)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "چلنے کی حد اوقات" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add constraints" msgid "Use %s statement" msgstr "Add constraints" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "بطور مسل محفوظ کریں" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "مسل کے لیے حروف کی سیٹ" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "وضع" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "سکڑاؤ" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5913,70 +5926,70 @@ msgstr "سکڑاؤ" msgid "Put columns names in the first row" msgstr "کالم نام پہلے صف میں ڈالیں" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" msgstr "کالم بند کیا گئے ہیں" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" msgstr "کالم جداجدا ہیں" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "NULL کو ان سے بدلیں" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "کالم کے اندر CRLF حروف ہٹائیں" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "کالم کا خاتمہ" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "سطریں کے آخر میں" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel اشاعت" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "کوائفیہ نام سانچا" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "سرور نام سانچا" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "جدول نام سانچا" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5985,143 +5998,143 @@ msgstr "جدول نام سانچا" msgid "Dump table" msgstr "جدول ڈ٘مپ کریں" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "جدول عنوان شامل کریں" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "جدول عنوان" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "جاری شدہ جدول عنوان" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "سرنامہ کلید" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME قسم" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "تعلقات" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "برآمد طریقہ" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "سرور پہ محفوظ کریں" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "موجودہ مسل پر تحریر کریں" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "مسل نام سانچا یاد رکھیں" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قدر اضافہ کریں" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "جدول اور کالم نام کو الٹے کوٹ سے بند کریں" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL موازنت موڈ" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "تاریخ اضافہ/ترمیم/پڑتال" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "تاخیر سے داخلے کا طریقہ استعمال کریں" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "فارن کلید پڑتال غیر فعال کریں" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "No tables found in database." msgid "Export views as tables" msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "اضافہ کریں %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "BLOB کے لیے شش اعشاری نظام استعمال کریں" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "نقل چھوڑیں داخلہ طریقہ استعمال کریں" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "کوائف داخل کرنے کا طریقہ کار" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "تخلیق شدہ طلب کی لمبائی کی حد" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "برآمد قسم" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "ایک ٹرانزیکشن میں برآمد بند کریں" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "برآمد وقت UTC میں" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "phpMyAdmin کو استعمال کرتے ہوئے محفوظ جڑت کے لیے کہیں" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "SSL جڑت کے لیے کہیں" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -6133,174 +6146,174 @@ msgstr "" "فارن کلید ڈراپ ڈاؤن خانہ میں اشیاء کی ترتیب دیں; [kbd]content[/kbd] حوالہ " "شدہ کوائف ہے, [kbd]id[/kbd] کلید قدر ہے" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "فارن کلید ڈراپ ڈاؤن ترتیب" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "اگر کچھ اشیاء موجود ہوئے تو ایک ڈراپ ڈاؤن استعمال ہوگا" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "فارن کلید حد" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "برااؤز موڈ" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "برااؤز موڈ کی تخصیص کریں" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default options" msgid "Customize default options." msgstr "طے شدہ اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "ڈویلپر" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Settings for phpMyAdmin developers" msgid "Settings for phpMyAdmin developers." msgstr "phpMyAdmin کے ڈویلپر کے لیے ترتیبات" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "تدوین موڈ" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "تدوین موڈ کی تخصیص کریں" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "طے شدہ برآمد کریں" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "طے شدہ برآمد اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "خصوصیات" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "عمومی" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 #, fuzzy #| msgid "Set some commonly used options" msgid "Set some commonly used options." msgstr "کچھ عام استعمال کے اختیارات مقرر کریں" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "طے شدہ درآمد" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "طے شدہ عام درآمد اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "درآمد / برآمد" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "درآمد اور برآمد کے لیے پوشے اور سکڑاؤ اختیارات مقرر کریں" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "کوائفیہ دکھانے کے اختیارات" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "گشت چوکھٹا" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "گشت چوکھٹا کی ظاہری شکل کی تخصیص کریں" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "سرور" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "سرور دکھانے کے اختیارات" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "جداول دکھانے کے اختیارات" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "مرکزی چوکھٹا" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "مائیکروسافٹ آفس" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "دیگر مرکزی ترتیبات" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "وہ ترتیبات جو کہیں موزوں نہیں ہوتے" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "صفحہ عنوانات" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -6308,19 +6321,19 @@ msgstr "" "براؤزر عنوان بار متن لکھیں۔ حوالہ کے لیے[doc@cfg_TitleTable]documentation[/" "doc] خاص قدریں حاصل کرنے کے لیے میجک سٹرنگ۔" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "طلب دریچہ" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "طلب دریچہ اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "سلامتی" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6332,25 +6345,25 @@ msgstr "" "یاد رکھیں کہ phpMyAdmin صرف ایک صارف مواجہ ہے اور اس کی خصوصیات MySQL پر اثر " "انداز نہیں ہوتیں" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "بنیادی ترتیبات" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "توثیق" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "توثیق ترتیبات" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "سرور کی تشکیل" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6362,17 +6375,17 @@ msgstr "" "اعلی درجے کی سرور تشکیل، اس وقت تک ان اختیارات کو تبدیل نہ کریں جب تک آپ کو " "یہ معلوم نہ ہو کہ یہ کس لیے ہیں" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "سرور سے جڑنے کے لیے پیرا میٹر داخل کریں" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "تشکیل ذخیرہ" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -6386,11 +6399,11 @@ msgstr "" "اضافی خواص تک رسائی کے لیے phpMyAdmin تشکیلات ذخیرہ کو تشکیل کریں، دیکھیں" "[doc@linked-tables]phpMyAdmin تشکیل ذخیرہ[/doc] دستاویزات میں" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "تبدیلیوں کی کھوج" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -6398,129 +6411,129 @@ msgstr "" "تبدیلیوں کی کھوج کوائفیہ میں بنائی جاتی ہیں۔ اس کے لیے phpMyAdmin تشکیل " "ذخیرہ درکار ہوتا ہے۔" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "برآمد اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "درآمد کی طے شدہ تخصیص کریں" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "گشت چوکھٹے کی تخصیص کریں" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "مرکزی چوکھٹے کی تخصیص کریں" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL طلب" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL طلب خانہ" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "SQL طلب خانہ میں دکھائے گئے روابط کی تخصیص کریں" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "SQL طلب ترتیبات" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "ابتدائیہ" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "ابتدائیہ صفحہ کی تخصیص کریں" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Databases" msgid "Database structure" msgstr "کوائفیے" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Databases" msgid "Table structure" msgstr "کوائفیے" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "جداول" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "جداول کے طریقہ کام چنیں" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "دکھائیں PDF schema" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "صفحے کا ناپ" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "متن قطعے" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "متن ان پٹ قطعے تخصیص کریں" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! متن" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "طے شدہ اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "تنبیہات" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "phpMyAdmin کے کچھ تنبیہات کو غیر فعال بنائیں" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6532,15 +6545,15 @@ msgstr "" "[a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] درآمد اور برآمد عملیات کے لیے " "سکڑاؤ فعال کریں" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv کے لیے اضافی پیرا میٹر" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6552,11 +6565,11 @@ msgstr "" "فعال ہونے کی صورت میں phpMyAdmin کثیر بیانی طلب جاری رکھے گا یہاں کہ اگر " "کوئی طلب ناکام بھی ہوجائے تو دیگر چلتے رہیں گے" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "کثیر بیاناتی نقص نظر انداز کریں" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6565,28 +6578,28 @@ msgstr "" "اگر سکرپٹ چلنے کا وقت ختم ہو تو درآمد مداخلت کی اجازت دیں۔ اس سے بڑی مسلیں " "درآمد کرنے میں آسانی ہوگی بہرحال اس سے کاروائی رک سکتی ہے۔" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "جزوی درآمد: مداخلت کی اجازت دیں" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "فارن کلید پڑتال غیر فعال کریں" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "INSERT نقص پر مت ساقط کریں" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "جدول کوائف کو مسل سے بدلیں" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6598,62 +6611,62 @@ msgstr "" "طے شدہ وضع; خبردار رہیں کہ فہرست اس محل وقوع پر انحصار کرتا ہے (کوائفیہ, " "جدول) اور صرفSQL ہر وقت دستیاب ہے" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "درآمد مسل کی وضع" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "LOCAL کلید الفاظ استعمال کریں" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "کالم نام پہلے صف میں ہوں" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "خالی صفیں درآمد مت کریں" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "سکہ درآمد کریں ($5.00 تا 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "فیصد کو مکمل ہندسہ کی صورت درآمد کریں (12.00% تا .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "ابتداء میں تعداد طلب جو چھوڑا جائے" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "جزوی درآمد: طلب چھوڑیں" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "صفر قدروں کے لیے AUTO_INCREMENT استعمال مت کریں" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "سلائیڈر کے لیے ابتدائی حالت" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "ایک وقت میں کتنے صفیں داخل کی جاسکتی ہیں" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "داخل شدہ صفوں کی تعداد" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "" #| "Maximum number of characters shown in any non-numeric column on browse " @@ -6664,11 +6677,11 @@ msgstr "" "براؤز منظر میں ایک غیر ہندسی کالم میں زیاد سے زیادہ حروف کی تعداد جو دکھائی " "جائے" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "کالم حروف کی حد مقرر کریں" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6678,11 +6691,11 @@ msgstr "" "تو لاگ آؤٹ صرف حالیہ سرور کے لیے ہوگا۔ یہ مقرر کرنے سے FALSE یہ آسانی ہوجاتی " "ہے کہ جب کثیر سرور جڑے ہوئے ہوں تو ان سے لاگ آؤٹ ہونا مسئلہ نہیں ہوتا۔" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "لاگ آؤٹ پر تمام کوکی کو حذف کریں" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6694,11 +6707,11 @@ msgstr "" "کوکی توثیق موڈ میں پچھلے لاگ ان کو پھر سے فعال کرنے یا نہ کرنے کے بارے وضاحت " "کریں" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "صارف نام یاد کریں" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6709,79 +6722,79 @@ msgstr "" "ہے یہ صرف اسی دورانیہ کے لیے ہے اور براؤزر دریچہ بند ہوتے ہوتے ہی یہ حذف " "ہوجائے گا۔ یہ انجانے ماحول کے لیے موزوں ہے۔" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "لاگ ان کوکی ذخیرہ" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "سیکنڈ میں بتائیں کہ ایک لاگ ان کوکی کب تک موجود ہو" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "لاگ ان کوکی کب تک موجود ہو" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "LONGTEXT کالم کے لیے متنی خانہ دگنا سائز کریں" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEXT کے لیے متنی خانہ بڑا کریں" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" "جب ایک SQL طلب دکھائی جائے تو زیادہ سے زیادہ حروف کی تعداد جو استعمال ہو" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "SQL کی زیادہ سے زیادہ لمبائی جو دکھائی جائے" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "صارفین اسے سے زیادہ قدر مقرر نہیں کرسکتے" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "زیادہ سے زیادہ کوائفیے" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Customize text input fields" msgid "Maximum items on first level" msgstr "متن ان پٹ قطعے تخصیص کریں" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6789,21 +6802,21 @@ msgstr "" "کسی نتیجہ کو دکھاتے ہوئے صفوں کی تعداد۔ اگر نتیجہ میں زیادہ صفیں موجود ہوں، " "\"پچھلا\" اور\"اگلا\" روابط دکھائے جائیں گے۔" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "زیادہ سے زیادہ جداول" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6815,45 +6828,45 @@ msgstr "" "ایک سکرپٹ کو کو جگہ مختص کرنے کے لیے بائٹ کی تعداد لکھیں جیسا کہ [kbd]32M[/" "kbd] ([kbd]0[/kbd] بغیر حد کے)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "میموری حد" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "علامت دکھائیں" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to." msgstr "URL جہاں گشت جھروکہ میں علامت اشارہ کردے" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "علامت ربط URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -6865,31 +6878,31 @@ msgstr "" "ربط شدہ صفحہ کو مرکزی دریچہ میں کھولیں ([kbd]main[/kbd]) یا ایک نئے میں " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "علامت ربط ہدف" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "بائیں جھروکے کے بالا میں سرور اخیتار دکھائیں" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "سرور انتخاب دکھائیں" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "شبیہ تک سریع رسائی کے لیے ہدف" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "شبیہ تک سریع رسائی کے لیے ہدف" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "" @@ -6897,19 +6910,19 @@ msgid "" "display a filter box." msgstr "جدول فلٹر خانہ دکھانے کے لیے جداول کی کم سے کم تعداد" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of items to display the filter box" msgstr "جدول فلٹر خانہ دکھانے کے لیے جداول کی کم سے کم تعداد" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of databases to display the database filter box" msgstr "جدول فلٹر خانہ دکھانے کے لیے جداول کی کم سے کم تعداد" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " @@ -6921,117 +6934,117 @@ msgstr "" "صرف ہلکے ورژن; کوائفیے شجرہ میں دکھائیں(نیچے بیان کیے گئے جدا کرنے والے لفظ " "سے متعین ہوتے ہیں)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "وہ لفظ جو کوائفیہ کو مختلف شجرہ سطحات میں سے جدا کررہا ہو" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "کوائفیہ شجرہ جدا کرنے والا" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "وہ لفظ جو جداول کے شجرہ سطحات کو جدا کرتا ہے" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "جدول جدا کرنے والا لفظ" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "جدول شجرہ سطحات کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "ماؤس کرسر کے ساتھ سرور کو نمایا کریں" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "نمایاں کرنے کو فعال کریں" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Iconic navigation bar" msgid "Enable navigation tree expansion" msgstr "شبیہاتی گشت بار" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "بغیر کھوج جداول" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "یہ تدوین، ان لائن تدوین، نقل اور حذف روابط ہیں" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "قدرتی ترتیب" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, fuzzy #| msgid "Use only icons, only text or both" msgid "Use only icons, only text or both." msgstr "صرف شبیہے، صرف متن یا دوتوں استعمال کریں" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Iconic navigation bar" msgid "Table navigation bar" msgstr "شبیہاتی گشت بار" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip آؤٹ پٹ بفر" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -7043,21 +7056,21 @@ msgstr "" "[kbd]SMART[/kbd] - اس اقسام کی کالموں کے لیے نزولی ترتیب type TIME, DATE, " "DATETIME اور TIMESTAMP, بصورت دیگر صعودی ترتیب" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "طے شدہ چھانٹی ترتیب" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Use persistent connections to MySQL databases" msgid "Use persistent connections to MySQL databases." msgstr "MySQL کوائفیہ سے جڑنے کے لیے بہتر جڑت استعمال کریں" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "بہتر جوڑ" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7071,11 +7084,11 @@ msgstr "" "اگر phpMyAdmin تشکیل ذخیرہ میں کوئی درکار جداول نہیں ملا جو کہ کوائفیہ " "تفصیلی ساکت صفحہ میں دکھایا جاتا ہے تو طے شدہ انتباہ کو غیر فعال کریں" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " @@ -7087,11 +7100,11 @@ msgstr "" "اگر کوکی توثیق کے لیے mcrypt موجود نہ ہونے کی تنبیہ غیر فعال کرنے کے لیے طے " "شدہ تنبیہ کو غیرفعال کریں" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7104,29 +7117,29 @@ msgstr "" "اگر phpMyAdmin تشکیل ذخیرہ میں کوئی درکار جداول نہیں ملا جو کہ کوائفیہ " "تفصیلی ساکت صفحہ میں دکھایا جاتا ہے تو طے شدہ انتباہ کو غیر فعال کریں" -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "ثنائی کالم کو ممنوع کریں" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -7136,49 +7149,49 @@ msgstr "" "درکار ہوگی). غیرفعال کرنے کی صورت میں یہ جاوا سکرپٹ فنکشن کو استعمال کرتے " "ہوئے طلب لاگ دکھاتا ہے (دریچہ بند ہونے کی صورت میں ضائع ہوجاتی ہے)." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "مستقل طلب لاگ" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, fuzzy #| msgid "How many queries are kept in history" msgid "How many queries are kept in history." msgstr "لاگ میں کتنے طلب رکھے جانے چاہیں" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "طلب لاگ کی لمبائی" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "ری کوڈ انجن" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "طے شدہ چھانٹی ترتیب" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -7187,89 +7200,89 @@ msgid "" msgstr "" "سرخی کو ہرX خانے کے لیے دہرائیں, [kbd]0[/kbd] اس خاصیت کو غیر فعال کرتا ہے" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "دہرانے کے لیے سرخیاں" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relations" msgid "Relational display" msgstr "تعلقات" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "سرور دکھانے کے اختیارات" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "پوشہ محفوظ کریں" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "استعمال نہ ہونے کی صورت میں خالی چھوڑ دیں" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "ہوسٹ توثیق حکم" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "طے شدہ کے لیے خالی چھوڑ دیں" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "ہوسٹ توثیق قاعدے" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "پاس ورڈ کے بغیر لاگ ان کی اجازت دیں" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "منتظم لاگ ان کی اجازت دیں" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP اختیار" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -7283,21 +7296,21 @@ msgstr "" "تشکیل مسل کے لیے جگہ [a@http://swekey.com]SweKey ہاروئیر توثیق[/a] (آپ کے " "منتظم دستاویز میں موجود نہیں ہے; مجوزہ: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey تشکیل مسل" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "توثیق کا طریقہ جو استعمال ہو" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "توثیق قسم" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" @@ -7309,11 +7322,11 @@ msgstr "" "نہیں کے لیے خالی چھوڑیں[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" "a] معاونت، مجوزہ[kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "جدول نشان کریں" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -7324,35 +7337,35 @@ msgid "" msgstr "" "کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "کالم معلومات جدول" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "جڑنے کو MySQL سرور کے لیے سکیڑیں" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "جڑنے کو سکیڑیں" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "جڑنے کی قسم" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "صارف پاس ورڈ کنٹرول" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7365,42 +7378,42 @@ msgstr "" "ایک خاص MySQL صارف مقررہ اجازت نامہ کے ساتھ تشکیل دیا گیا ہے, مزید معلومات " "یہاں موجود ہیں[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "صارف کو کنٹرول کریں" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Control user" msgid "Control host" msgstr "صارف کو کنٹرول کریں" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control user" msgid "Control port" msgstr "صارف کو کنٹرول کریں" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, fuzzy #| msgid "Hide databases matching regular expression (PCRE)" msgid "Hide databases matching regular expression (PCRE)." msgstr "وہ کوائفیے چھپائیں جو ریگولر ایکسپریشن سے مطابقت رکھتے ہیں (PCRE)" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -7409,15 +7422,15 @@ msgstr "" "bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL نقائص" "[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA کی استعمال کو غیر فعال کریں" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "کوائفیے چھپائیں" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7428,41 +7441,41 @@ msgid "" msgstr "" "SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL طلب لاگ جدول" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, fuzzy #| msgid "Hostname where MySQL server is running" msgid "Hostname where MySQL server is running." msgstr "جہاں MySQL سرور چل رہا ہے اس کا نام" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "سرور نام" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "لاگ آؤٹ URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximal number of table preferences to store" msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -7474,13 +7487,13 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns 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[/" @@ -7492,36 +7505,36 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "پاس ورڈ کے بغیر جڑنے کی کوشش کریں" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "پاس ورڈ کے بغیر جڑیں" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -7532,33 +7545,33 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "ڈیٹا بیس" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "ve blank for no column comments/mime types, suggested: [kbd]_column_info[/" @@ -7569,13 +7582,13 @@ msgid "" msgstr "" "کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" 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[/" @@ -7586,13 +7599,13 @@ msgid "" msgstr "" "کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Count tables" msgid "Favorites table" msgstr "حداول کی گنتی کریں" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" @@ -7604,43 +7617,43 @@ msgstr "" "نہیں کے لیے خالی چھوڑیں[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" "a] معاونت، مجوزہ[kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Enable SSL for connection to MySQL server." msgstr "جڑنے کو MySQL سرور کے لیے سکیڑیں" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -7652,11 +7665,11 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -7668,11 +7681,11 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" @@ -7683,49 +7696,49 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7736,21 +7749,21 @@ msgid "" msgstr "" "SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" @@ -7761,35 +7774,35 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "جداول استعمال کریں" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]" @@ -7800,161 +7813,161 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "گرِڈ دکھائیں" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 msgid "" +"Defines whether SQL queries generated by phpMyAdmin should be displayed." +msgstr "" + +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" +msgstr "" + +#: libraries/config/messages.inc.php:764 +msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" msgstr "طلب خانہ چھپائیں" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -7968,57 +7981,57 @@ msgstr "" "اگر phpMyAdmin تشکیل ذخیرہ میں کوئی درکار جداول نہیں ملا جو کہ کوائفیہ " "تفصیلی ساکت صفحہ میں دکھایا جاتا ہے تو طے شدہ انتباہ کو غیر فعال کریں" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "لاگ ان کوکی کب تک موجود ہو" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ڈیفالٹ" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -8026,52 +8039,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -8079,34 +8092,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username:" msgid "Proxy username" msgstr "صارف نام:" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password:" msgid "Proxy password" msgstr "پاس ورڈ:" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -8118,51 +8131,51 @@ msgstr "" "[a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] درآمد اور برآمد عملیات کے لیے " "سکڑاؤ فعال کریں" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8184,46 +8197,46 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Spreadsheet" msgstr "اوپن دستاویز" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document" msgid "OpenDocument Text" @@ -8471,20 +8484,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "پاس ورڈ:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -8635,8 +8648,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -9155,8 +9168,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -9639,7 +9652,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin دستاویز" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Navigation frame" msgid "Reload navigation panel" @@ -10325,8 +10338,8 @@ msgstr "%s میں خوش آمدید" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" @@ -10572,7 +10585,7 @@ msgstr "کالم نام پہلے صف میں ڈالیں" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -11543,7 +11556,7 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "Username:" msgid "User name:" @@ -11551,16 +11564,16 @@ msgstr "صارف نام:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -11590,10 +11603,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -11605,47 +11618,47 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Text fields" msgid "Use text field:" msgstr "متن قطعے" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -12443,7 +12456,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12510,14 +12523,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -12526,7 +12539,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -12535,7 +12548,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -12552,260 +12565,260 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "صارف کا اضافہ" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Check privileges for database \"%s\"." msgid "Add privileges on the following database(s):" msgstr "کوائفیہ استحقاق کی پڑتال کریں \"%s\"." -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Check Privileges" msgid "Privileges for %s" msgstr "استحقاق پڑتال کریں" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Reloading Privileges" msgid "Edit Privileges:" msgstr "استحقاق پھر لوڈ کرتے ہوئے" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -14567,23 +14580,23 @@ msgstr "اشاریے" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "صارف:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "تبصرہ" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -15619,8 +15632,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -15753,8 +15766,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/uz.po b/po/uz.po index dbbf6b871b..9514d32ee4 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-14 19:09+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek \n" +"Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uz\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Weblate 2.1-dev\n" @@ -70,7 +70,7 @@ msgstr "Изоҳлар жадвали:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -94,7 +94,7 @@ msgstr "Устун" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -150,8 +150,8 @@ msgid "Links to" msgstr "Алоқалар" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -180,13 +180,13 @@ msgstr "Бирламчи" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -209,13 +209,13 @@ msgstr "Йўқ" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -271,14 +271,14 @@ msgstr "" "учун %sбу ерга%s босинг." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Жадвал" @@ -291,7 +291,7 @@ msgid "Rows" msgstr "Қаторларсони" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Ҳажми" @@ -386,9 +386,9 @@ msgstr "Ҳолат" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -597,15 +597,15 @@ msgstr "Янги фойдаланувчи қўшиш" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -640,14 +640,14 @@ msgstr "Тўла қўйиш" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" -"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %" -"sдокументацияда%s келтирилган." +"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " +"%sдокументацияда%s келтирилган." #: import.php:343 import.php:648 msgid "Showing bookmark" @@ -736,7 +736,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Орқага" @@ -761,7 +761,7 @@ msgid "General Settings" msgstr "Алоқаларнинг асосий имкониятлари" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Паролни ўзгартириш" @@ -860,7 +860,7 @@ msgstr "Версия ҳақида маълумот" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Документация" @@ -1181,7 +1181,7 @@ msgstr "Индекс(лар)ни сақлаш" msgid "Edit Index" msgstr "Таҳрирлаш усули" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s) to index" @@ -1219,7 +1219,7 @@ msgstr "Ҳеч бўлмаганда битта майдон киритиш ша #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1256,12 +1256,12 @@ msgstr "Хост номи бўш!" msgid "The user name is empty!" msgstr "Фойдаланувчи номи белгиланмаган!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Парол белгиланмаган!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" @@ -1487,7 +1487,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1800,7 +1800,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -2055,7 +2055,7 @@ msgstr "SQL сўровлари қутиси" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2339,7 +2339,7 @@ msgstr "Маълумотлар файли кўрсатгичи ҳажми" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "Эътибор бермаслик" @@ -2531,7 +2531,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Барчасини кўрсатиш" @@ -2647,7 +2647,7 @@ msgstr "Индекс(лар)ни сақлаш" msgid "Show hidden navigation tree items." msgstr "Чап рамкада логотипни кўрсатиш" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main frame" @@ -3226,16 +3226,16 @@ msgid "Delete" msgstr "Ўчириш" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3373,7 +3373,7 @@ msgid "During current session" msgstr "Жорий хатоликларни ташлаб кетиш" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3819,8 +3819,8 @@ msgstr "SQL сўрови муваффақиятли бажарилди" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." @@ -3860,6 +3860,7 @@ msgstr "Белгиланганларни:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3875,12 +3876,12 @@ msgstr "Ўзгартириш" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -4087,7 +4088,7 @@ msgid "" msgstr "%1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Сервер" @@ -4102,11 +4103,11 @@ msgstr "Намойиш" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -4122,7 +4123,7 @@ msgstr "Тузилиши" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4148,9 +4149,9 @@ msgstr "Қўйиш" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Привилегиялар" @@ -4212,9 +4213,9 @@ msgid "Central columns" msgstr "CHAR майдонидаги устунлар сони" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Маълумотлар базалари" @@ -4343,7 +4344,7 @@ msgid "Recent" msgstr "Тозалаш" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4421,7 +4422,7 @@ msgstr "Сортировка" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4810,14 +4811,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -5075,7 +5076,7 @@ msgstr "Максимал ҳажми: \"%s\"%s\"" msgid "MySQL said: " msgstr "MySQL жавоби: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "Сўров таҳлили" @@ -5087,7 +5088,7 @@ msgstr "Таҳлил керак эмас" msgid "Without PHP Code" msgstr "PHP-код олиб ташлаш" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP-код" @@ -5213,13 +5214,13 @@ msgstr "Тавсифи" msgid "Use this value" msgstr "Ушбу қийматни ишлатиш" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5665,7 +5666,7 @@ msgid "Set value: %s" msgstr "Қуйидаги қийматни ўрнатиш: \"%s\"" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Асл қийматларни тиклаш" @@ -6195,41 +6196,53 @@ msgstr "Жадвалга киришда кўрсатиладиган ёрлиқ" msgid "Default table tab" msgstr "Жадвал ёрлиғи" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Жадвал ва майдон номларини тескари қўштирноққа олиш" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Жадвал ва майдон номларини тескари қўштирноққа олиш" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Жадвал тузилиши таҳлили" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Жадвал тузилиши таҳлили" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" "Серверлар рўйхатини пастга тушадиган меню ўрнига оддий рўйхат шаклида " "кўрсатиш." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Серверлар рўйхатини кўрсатиш" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Жадвалга хизмат кўрсатиш" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -6241,39 +6254,39 @@ msgstr "" "Скрипт ишлаши мумкин бўлган секундлар сони (чегарамаслик учун [kbd]0[/kbd] " "киритинг)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Максимум бажарилиш вақти" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Тавсиф" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Файл каби сақлаш" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Файл кодировкаси" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Сиқиш" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -6285,74 +6298,74 @@ msgstr "Сиқиш" msgid "Put columns names in the first row" msgstr "Майдон номларини биринчи қаторга жойлаштириш" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Майдон қийматлари қуйидаги белги ичига олинган " -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Белги олдида қуйидаги белги мавжуд " -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "NULL қийматни қуйидагига алмаштириш" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Майдонлар ичидаги сатрдан-сатрга кўчириш белгиларини олиб ташлаш" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Қаторлар бўлувчиси" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Қаторлар бўлувчиси" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-версияси" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Маълумотлар базаси номи шаблони" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Сервер номи шаблони" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Жадвал номи шаблони" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6363,149 +6376,149 @@ msgstr "Жадвал номи шаблони" msgid "Dump table" msgstr "Жадваллар сони: \"%s\"" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Жадвалга сарлавҳа қўшиш" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Жадвал сарлавҳаси" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Жадвал сарлавҳаси (давоми)" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Белги идентификатори" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME тури" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Алоқалар" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Эскпорт тури" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Серверга сақлаш" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Мавжуд файл(лар) устидан ёзиш" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Файл номи шаблонини ёдда сақлаш" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Жадвал ва майдон номларини тескари қўштирноққа олиш" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL билан мослик режими" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Тузиш, янгилаш ва текшириш саналари" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Кечиктирилган қўйиш (DELAYED INSERTS) дан фойдаланиш" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Ташқи калитларни текширишни ўчириш" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Export views" msgid "Export views as tables" msgstr "Кўринишларни экспорт қилиш" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "BLOB туридаги маълумотларни ўн олтилик шаклда намойиш этиш" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "Эътибор бермаслик (IGNORE) қўйилмалардан фойдаланиш" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Тузилаёган сўровнинг максимал узунлиги" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Жадвалларни экспорт қилиш" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Транзакцияга экспортни қўшиш" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Вақтни UTC шаклда экспорт қилиш" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "phpMyAdmin ишлатилганда хавфсиз (SSL) уланишга мажбур қилиш" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Хавфсиз (SSL) уланишга мажбур қилиш" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -6517,192 +6530,192 @@ msgstr "" "Ташқи калит менюсининг тартиблаш усули: [kbd]content[/kbd] - мурожаат " "маълумотлари бўйича, [kbd]id[/kbd] - калит қийматлар бўйича" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Ташқи калит менюси тартиби" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "Агар камроқ қиймат бўлса, пастга тушувчи меню ишлатилади" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Ташқи калит чегаралари" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Кўриб чиқиш усул" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "Кўриб чиқиш усулини созлаш" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options." msgstr "Экспорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Таҳрирлаш усули" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "Таҳрирлаш усулини созлаш" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Экспорт" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "Экспорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Функциялар" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Генерация қилиш" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Импорт" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "Импорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Импорт/Экспорт" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "Импорт ва экспорт каталоглари ва қисиш усулларини белгилаш" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "Маълумотлар базаларини кўрсатиш афзалликлари" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "Навигация панели" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "Навигация панели кўринишини созлаш" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Серверлар" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "Серверлар кўринишини созлаш" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "Жадваллар кўринишини созлаш" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "Асосий рамка" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Бошқа созланишлар" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "Бошқа жойга сиғмаган созланишлар" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Саҳифа рақами: " -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "Сўровлар ойнаси кўринишини созлаш" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Хавфсизлик" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6714,27 +6727,27 @@ msgstr "" "Эсда тутинг, phpMyAdmin - бу фақатгина фойдаланувчи интерфейси бўлиб, унинг " "хусусиятлари MySQL-серверининг функцияларини чегараламайди" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Асосий созланишлар" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Аутентификация усули" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings." msgstr "Аутентификация усули" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Сервер конфигурацияси" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6746,19 +6759,19 @@ msgstr "" "Кенгайтирилган сервер конфигуарцияси, агар уларнинг маъносини аниқ " "билмасангиз, яхшиси, уларга тегманг." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "Сервернинг уланиш параметрларини киритиш" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Конфигурацион файл" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "figure phpMyAdmin database to gain access to additional features, see ../" @@ -6774,143 +6787,143 @@ msgstr "" "Documentation.html#linked-tables]уланган жадваллар инфратузилмасини[/a] " "қараб чиқинг" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Экспорт танловларини мослаштириш" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Импорт танловларини мослаштириш" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "Навигация панелини мослаштириш" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "Асосий рамкани мослаштириш" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL сўровлари" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL сўровлари қутиси" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "SQL сўровлари қутисида кўрсатиладиган боғларни созлаш" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings." msgstr "SQL сўровлари" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Бошланғич" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "Бошланғич саҳифани созлаш" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Ёрлиқлар" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Ёрлиқлар қандай ишлашини танланг" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Алоқалар схемаси" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Қоғоз ўлчами" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Матнмайдонини ишлатиш" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields." msgstr "Экспорт танловларини мослаштириш" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! матн" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Экспорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Огоҳлантириш" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6922,15 +6935,15 @@ msgstr "" "Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/Gzip]gzip" "[/a] ёрдамида сиқишни ёқиш" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv учун қўшимча параметрлар" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6942,11 +6955,11 @@ msgstr "" "Агар ёқилган бўлса, phpMyAdmin, ҳатто сўровлардан бири барбод бўлганда ҳам, " "кўп қисмли сўровларни ҳисоблашни давом этади" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Кўп қисмли сўровлардаги хатоларга эътибор бермаслик" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6956,28 +6969,28 @@ msgstr "" "бериш. Бу катта файлларни юклаш учун яхши усул, лекин у транзакцияларни " "бузиши мумкин." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Қисман импорт: узишга рухсат бериш" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Ташқи калитларни текширишни ўчириш" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6989,80 +7002,80 @@ msgstr "" "Импорт файл формати; ёдда тутингки, ушбу рўйхат (маълумотлар базаси, жадвал) " "жойлашишига боғлиқ ва фақат SQL ишлайди" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Импорт қилинаётган файл формати" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "\"LOCAL\" калит сўзини ишлатиш" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Биринчи қаторга устун номлари" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Бўш қаторларни импорт қилмаслик" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Пул бирликларини импорт қилиш (масалан, $5.00 ни 5.00 га)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" "Фоизларни мос ўнли касрлар каби импорт қилиш (масалан, 12.00% ўрнига 0.12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start." msgstr "Файл бошидаги эътибор бериш керак бўлмаган қаторлар (сўровлар) сони" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Қисман импорт: сўровларга эътибор бермаслик" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "Бир вақтнинг ўзиданечта қатор қўйилиши мумкин" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Қўйилган қаторлар сони" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "SQL сўрови кўрсатилганда ишлатиладиган белгиларнинг максимал сони" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -7073,11 +7086,11 @@ msgstr "" "чиқиш амалга оширилади. Агар бир нечта серверларга уланганбўлса, унда ЁЛҒОН " "(FALSE) танлови бошқа серверлардан чиқиш унитилишига олиб келиши мумкин." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Чиқишда барча \"cookies\"ларни ўчириш" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -7089,11 +7102,11 @@ msgstr "" "cookie-аутентификация усулидан фойдаланилганда олдинги логин сессияси қайта " "чақирилиб олиниши керакми" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Фойдаланувчи номини чақириб олиш" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -7105,54 +7118,54 @@ msgstr "" "сақланади ва браузер ойнаси ёпилган заҳоти ўчирилади. Бу қиймат ишончсиз " "муҳитлар учун тавсия этилади." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Логин маълумотини cookie-да сақлаш" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "cookie-логин усули қанча вақт (секундларда) яроқли бўлишини белгиланг" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "cookie-логин яроқлиги" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "SQL сўрови кўрсатилганда ишлатиладиган белгиларнинг максимал сони" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "SQL сўровининг максимал узунлиги" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Маълумотлар базаларининг максимал сони" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -7162,13 +7175,13 @@ msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "Вақтинчалик индекс файлларининг максимал ҳажми" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -7178,11 +7191,11 @@ msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -7190,21 +7203,21 @@ msgstr "" "Натижаларда кўрсатиладиган қаторлар сони. Агар натижалар қатори кўрсатилган " "қийматдан кўп бўлса, \"Олдинги\" ва \"Кейинги\" боғланишлар кўрсатилади." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Кўрсатиладиган қаторларнинг максимал сони" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Максимал жадваллар сони" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -7216,45 +7229,45 @@ msgstr "" "Скрипт учун ажратиладиган байлардаги хотира миқдори, масалан [kbd]32M[/kbd] " "([kbd]0[/kbd] - чегараланмаган)." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Хотира миқдори" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "Чап рамкада логотипни кўрсатиш" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "Чап рамкада логотипни кўрсатиш" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Логотипни кўрсатиш" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "Show logo in left frame" msgid "URL where logo in the navigation panel will point to." msgstr "Чап рамкада логотипни кўрсатиш" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Логотип боғланган URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -7266,31 +7279,31 @@ msgstr "" "Боғланган саҳифани бош ойнада ([kbd]бош[/kbd]) ёки янги ойнада ([kbd]янги[/" "kbd]) очиш" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Логотип боғланган нишон" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "Чап рамканинг юқори қисмида сервер танловини кўрсатиш" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Сервер танловини кўрсатиш" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Тезкор мурожаат пиктограммаси учун нишон" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Тезкор мурожаат пиктограммаси учун нишон" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "" @@ -7298,19 +7311,19 @@ msgid "" "display a filter box." msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of items to display the filter box" msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of databases to display the database filter box" msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " @@ -7322,105 +7335,105 @@ msgstr "" "Енгил версия; маълумотлар базаларини дарахтда кўрсатиш (қуйида белгиланган " "сатр билан бўлинади)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "Маълумотлар базаларини дарахтнинг турли даражаларига бўлувчи сатр" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Маълумотлар базаси дарахтининг бўлувчиси" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "Жадвалларни дарахтнинг турли даражаларига бўлувчи сатр" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Жадвал дарахтининг бўлувчиси" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Жадваллар дарахтининг максимум чуқурлиги" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "Сичқонча курсори турган серверни белгилаш" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Белгилашни ёқиш" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Iconic navigation bar" msgid "Enable navigation tree expansion" msgstr "Пиктограммали навигация менюси" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Кузатилмаган жадваллар" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Жадвал сортировкасини ўзгартириш" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, fuzzy #| msgid "Use only icons, only text or both" msgid "Use only icons, only text or both." msgstr "Фақат пиктограмма, фақат матн ёки ҳар иккисини ишлатиш" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Iconic navigation bar" msgid "Table navigation bar" msgstr "Пиктограммали навигация менюси" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, fuzzy #| msgid "use GZip output buffering for increased speed in HTTP transfers" msgid "Use GZip output buffering for increased speed in HTTP transfers." @@ -7428,11 +7441,11 @@ msgstr "" "HTTP орқали маълумот узатишда юқори тезликка эришиш учун GZip буферизациядан " "фойдаланинг" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip буферизация" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "d]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -7444,74 +7457,74 @@ msgstr "" "[kbd]SMART[/kbd] – яъни, TIME, DATE, DATETIME ва TIMESTAMP туридаги " "майдонлар учун камайиш тартибида, акс ҳолда кўпайиш тартибида" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Асл тартиблаш қоидаси" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Use persistent connections to MySQL databases" msgid "Use persistent connections to MySQL databases." msgstr "MySQL маълумотлар базаларида доимий уланишлардан фойдаланиш" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Доимий уланишлар" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 #, fuzzy #| msgid "Allow to display all the rows" msgid "How to display the menu tabs" msgstr "Барча қаторларни кўрсатишга рухсат бериш" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Бинар (иккилик) майдонларни ҳимоялаш" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 #, fuzzy #| msgid "" #| "ble if you want DB-based query history (requires phpMyAdmin configuration " @@ -7526,148 +7539,148 @@ msgstr "" "танловни ёқинг (pmadb талаб этилади). Ушбу танлов ўчирилган бўлса, ойна " "ёпилган заҳоти сўровлар тарихи йўқолади." -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Доимий сўровлар тарихи" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, fuzzy #| msgid "How many queries are kept in history" msgid "How many queries are kept in history." msgstr "Журналда сақланадиган сўровлар сони" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "Сўровлар тарихи узунлиги" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Кодировкалаш функцияси" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Жадвал номини ўзгартириш" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Асл тартиблаш қоидаси" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Оқимли тиклаш" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display field" msgid "Relational display" msgstr "Алоқадор майдон қиймати" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "Серверлар кўринишини созлаш" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Сақлаш директорияси" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "Агар ишлатилмаса бўш қолдиринг" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Аутентификация тартиби" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "Асл қоидаларни ишлатиш учун бўш қолдиринг" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Аутентификация қоидалари" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Паролсиз қиришга рухсат бериш" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "\"root\"га киришга рухсат бериш" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Сессия қийматлари" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Бўлими" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -7682,21 +7695,21 @@ msgstr "" "файл йўли (ҳужжатлар каталогига жойлаштирилмаган; тавсия этилади: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "\"SweKey\" конфигурация файли" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "Фойдаланиладиган аутентификация усули" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Аутентификация усули" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" @@ -7708,11 +7721,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]Хатчўп[/a] ишлатмаслик учун бўш " "қолдиринг, асли: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Хатчўплар жадвали" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -7724,35 +7737,35 @@ msgstr "" "Устун изоҳлари/\"mime\"-турлари ҳақидаги маълумотларни ишлатмаслик учун бўш " "қолдиринг, асли: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Устун маълумотлари жадвали" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "MySQL сервеига уланишни қисиш" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Уланишни қисиш" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Уланиш тури" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Назорат фойдаланувчиси пароли" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7766,60 +7779,60 @@ msgstr "" "батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" "да мавжуд" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Назорат фойдаланувчиси" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Control user" msgid "Control host" msgstr "Назорат фойдаланувчиси" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control user" msgid "Control port" msgstr "Назорат фойдаланувчиси" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, fuzzy #| msgid "Hide databases matching regular expression (PCRE)" msgid "Hide databases matching regular expression (PCRE)." msgstr "" "Мунтазам иборалар(PCRE)га тўғри келадиган маълумотлар базаларини яшириш" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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 "" -"Кўпроқ маълумот учун [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" -"\"PMA bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" -"ларга қаранг" +"Кўпроқ маълумот учун [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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA ишлатишни ўчириш" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Базаларни яшириш" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7831,43 +7844,43 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL сўровлари тарихи жадвали" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, fuzzy #| msgid "Hostname where MySQL server is running" msgid "Hostname where MySQL server is running." msgstr "MySQL сервери ишлаётган хост номи" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Сервер хост номи" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Чиқиш URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximal number of table preferences to store" msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "Тобе сервер статуси жадвалини кўриш" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7875,16 +7888,16 @@ msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" -"\"pma_pdf_pages\"[/kbd]" +"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " +"[kbd]\"pma_pdf_pages\"[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns table" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7893,20 +7906,20 @@ msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" -"\"pma_table_coords\"[/kbd]" +"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " +"[kbd]\"pma_table_coords\"[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "Паролсиз уланишга ҳаракат қилиш" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Паролсиз уланиш" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 #, fuzzy #| msgid "" #| " can use MySQL wildcard characters (% and _), escape them if you want use " @@ -7920,36 +7933,36 @@ msgstr "" "олдига тескари эгри чизиқ (\\) қўйишингиз керак, масалан \\\"my\\_db\\" "\" (лекин \"my_db\" эмас)" -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Фақат рўйхатдаги базаларни кўрсатиш" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, fuzzy #| msgid "Leave empty if not using config auth" msgid "Leave empty if not using config auth." msgstr "" "Агар \"config\" аутентификация усулидан фойдаланмасангиз, бўш қолдиринг" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "\"config\" аутентификация усули пароли" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" -"\"pma_pdf_pages\"[/kbd]" +"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " +"[kbd]\"pma_pdf_pages\"[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF-схема: саҳифалар жадвали" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7965,25 +7978,25 @@ msgstr "" "қаранг. Агар фойдаланмасангиз, бўшқолдиринг. Асл қиймати: [kbd]\"phpmyadmin" "\"[/kbd]" -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "маълумотлар базаси номи" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Сервер порти" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -7994,13 +8007,13 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" 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]" @@ -8011,13 +8024,13 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Variables" msgid "Favorites table" msgstr "Ўзгарувчилар" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -8029,11 +8042,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]Алоқа боғланишлари[/a]ни " "ишлатмаслик учун, бўш қолдиринг, асл қиймати: [kbd]\"pma_relation\"[/kbd]" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Алоқалар жадвали" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -8045,25 +8058,25 @@ msgstr "" "Намуна учун [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "аутентификация усуллари[/a]га қаранг" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Кириш сессияси номи" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Кириш URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Сервер сокети" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, fuzzy #| msgid "Enable SSL for connection to MySQL server" msgid "Enable SSL for connection to MySQL server." @@ -8071,11 +8084,11 @@ msgstr "" "SSL (Secure Sockets Layer - ҳимояланган сокетлар протоколи) уланишдан " "фойдаланиш" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL уланишдан фойдаланиш" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -8084,16 +8097,16 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" -"\"pma_table_coords\"[/kbd]" +"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " +"[kbd]\"pma_table_coords\"[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF-схема: жадвал координаталари" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "le to describe the display fields, leave blank for no support; gested: " @@ -8105,13 +8118,13 @@ msgstr "" "Кўрсатиладиган майдонлар шарҳлари сақланадиган жадвал, ишлатмаслик учун бўш " "қолдиринг, асл қиймати: [kbd]\"pma_table_info\"[/kbd]" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Майдонлар жадвалини кўрсатиш" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -8122,53 +8135,53 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Жадвални дефрагментациялаш" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Тавсиф" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -8179,25 +8192,25 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL сўровлари тарихи жадвали" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Автоматик тиклаш режими" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -8208,37 +8221,37 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Жадвалларни ишлатиш" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Хостлар жадвалидан фойдаланиш" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -8249,35 +8262,35 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "\"config\" аутентификация усули фойдаланувчиси" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "MySQL сервери ишлаётган хост сервер номи." -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Ушбу сервернинг кенгайтирилган номи" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Барча қаторларни кўрсатишга рухсат бериш" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy #| msgid "" #| "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -8292,77 +8305,77 @@ msgstr "" "Эсда тутинг, ушбу танловни ёқишингиз [kbd]\"config\"[/kbd] аутентификация " "усулидаги паролга таъсир этмайди" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Паролни ўзгартириш формасини кўрсатиш" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Маълумотлар базаси тузиш формасини кўрсатиш" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show versions" msgid "Show Creation timestamp" msgstr "Версияларни кўрсатиш" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy #| msgid "Show master status" msgid "Show Last check timestamp" msgstr "Уланган бош серверларни кўрсатиш" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Очиқ жадваллар рўйхати" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Фукнциялармайдонини кўрсатиш" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Тўрни кўрсатиш" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -8374,15 +8387,15 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] функцияси " "натижасига боғ кўрсатиш" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "\"phpinfo()\" функциясига боғ кўрсатиш" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "MySQL сервери ҳақида батафсил маълумот кўрсатиш" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -8391,22 +8404,22 @@ msgid "" msgstr "" "phpMyAdmin томонидан генерация қилинган SQL сўровларини кўрсатиш керакми" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Show SQL сўровларини кўрсатиш" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "SQL Query box" msgid "Retain query box" msgstr "SQL сўровлари қутиси" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, fuzzy #| msgid "Allow to display database and table statistics (eg. space usage)" msgid "Allow to display database and table statistics (eg. space usage)." @@ -8414,11 +8427,11 @@ msgstr "" "Маълумотлар базалари ва жадваллар статискасини (масалан, дискда эгаллаган " "жойи) кўрсатиш" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Статискани кўрсатиш" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy #| msgid "" #| "Mark used tables and make it possible to show databases with locked tables" @@ -8428,19 +8441,19 @@ msgstr "" "Ишлатилаётган жадвалларни белгилаш ва қулфланган жадваллари мавжуд бўлган " "маълумотлар базаларини кўришга имкон бериш" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Қулфланган жадвалларни ташлаб кетишлик" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " @@ -8453,59 +8466,59 @@ msgstr "" "[kbd]cookie[/kbd]-аутентификация усулида cookie-ларни шифрлаш учун " "ишлатиладиган сирли ибора" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "cookie-логин яроқлиги" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR майдонидаги қаторлар сони" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Жадвал ёрлиғи" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 #, fuzzy #| msgid "" #| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following " @@ -8523,57 +8536,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "IP бўйича рухсат бериш/рад этиш учун ишонарли прокси-серверлар рўйхати" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Импорт директорияси" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, fuzzy #| msgid "Allow for searching inside the entire database" msgid "Allow for searching inside the entire database." msgstr "" "Маълумотлар базаси ичидаги маълумотларни тўлалигича қидиришга рухсат бериш" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Базани қидиришдан фойдаланиш" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Охирги версияни текшириш" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -8581,34 +8594,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "Фойдаланувчи" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Парол" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -8620,54 +8633,54 @@ msgstr "" "Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] қисишни ёқиш" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "Сервер порти" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL сўровлари" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8697,48 +8710,48 @@ msgstr "Аутентификация тартиби" msgid "Signon authentication" msgstr "Аутентификация тартиби" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "\"LOAD DATA\" ишлатилган CSV" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Open Document жадвали" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Рангни танлаш" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Маълумотлар базаси экспорт параметрлари" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excel учун CSV" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -8991,20 +9004,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Парол йўқ" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Парол:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -9178,16 +9191,16 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: %3" -#| "$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: " +#| "%3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" -"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " +"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:526 msgid "use this for future exports" @@ -9777,8 +9790,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -10282,7 +10295,7 @@ msgstr "Чиқиш" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документацияси" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -10977,8 +10990,8 @@ msgstr "\"%s\" дастурига хуш келибсиз" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш " "сценарийсидан%2$s фойдаланишингиз мумкин." @@ -11246,7 +11259,7 @@ msgstr "Майдон номларини биринчи қаторга жойла #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -12383,7 +12396,7 @@ msgstr "" "қўшинг:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12391,16 +12404,16 @@ msgstr "Фойдаланувчи номи" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Фойдаланувчи номи" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Парол" @@ -12430,10 +12443,10 @@ msgstr "Сервер ID си" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Хост" @@ -12447,40 +12460,40 @@ msgstr "" "серверлар кўрсатилмоқда." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Ҳар қайси хост" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Локал" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Ушбу хост" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Ҳар қайси фойдаланувчи" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Матнмайдонини ишлатиш" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Хостлар жадвалидан фойдаланиш" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12489,7 +12502,7 @@ msgstr "" "унинг ўрнига Хостлар жадвалидаги қийматлар ишлатилади." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Тасдиқлаш" @@ -13343,7 +13356,7 @@ msgstr "Йўқ" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -13417,14 +13430,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -13435,7 +13448,7 @@ msgid "Administration" msgstr "Администрация" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Глобал привилегиялар" @@ -13446,7 +13459,7 @@ msgid "Global" msgstr "Глобал" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" @@ -13465,285 +13478,285 @@ msgstr "" "Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан " "привилегиялар қўшишга рухсат беради." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Матнмайдонини ишлатиш" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Паролни ўзгартирмаслик" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "\"%s\" фойдаланувчининг привилегиялари бекор қилинди." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Ҳар қайси фойдаланувчи" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" маълумотлар базасига барча привилегияларни бериш." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" намойиши ўчирилди" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Фойдаланувчи" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Биронта ҳам фойдаланувчи топилмади." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Ҳар қайси" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "Глобал" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "Гуруҳлаш белгиси" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Маълумотлар базаси даражасида" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Привилегияларни таҳрирлаш" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Бекор қилиш" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Серверларни таҳрирлаш" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "ва эскисини сақлаш." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш…" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Майдон привилегиялари" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари " "ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " "ўчириш." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Привилегиялар қайта юкланмоқда" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "\"%s\" учун привилегиялар ўзгартирилди." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "\"%s\" ўчирилмоқда" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" номли фойдаланувчи мавжуд!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегиялар" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Привилегияларни таҳрирлаш" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни " "тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги " "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." @@ -14618,8 +14631,8 @@ msgstr "Очиқ файллар сони." #: libraries/server_status_variables.lib.php:641 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" -"\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" +"()\" функцияси ёрдамида очилган файлга айтилади." #: libraries/server_status_variables.lib.php:644 msgid "The number of tables that are open." @@ -15709,23 +15722,23 @@ msgstr "Индекс кеши ҳажми" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Индекс тури:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Фойдаланувчи" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Изоҳ" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -16815,8 +16828,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -16951,8 +16964,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/uz@latin.po b/po/uz@latin.po index 9558870690..f0809052f1 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-11-05 10:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) \n" +"Language: uz@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uz@latin\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.0-dev\n" @@ -70,7 +70,7 @@ msgstr "Jadval izohi" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -96,7 +96,7 @@ msgstr "Maydon nomlari" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -152,8 +152,8 @@ msgid "Links to" msgstr "Aloqalar" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -182,13 +182,13 @@ msgstr "Birlamchi" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -211,13 +211,13 @@ msgstr "Yo‘q" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -273,14 +273,14 @@ msgstr "" "Sabablarini aniqlash uchun %sbu yerga%s bosing." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Jadval" @@ -293,7 +293,7 @@ msgid "Rows" msgstr "Qatorlarsoni" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Hajmi" @@ -396,9 +396,9 @@ msgstr "Holat" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -609,15 +609,15 @@ msgstr "Yangi foydalanuvchi qo‘shish" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -652,11 +652,11 @@ msgstr "To‘la qo‘yish" #: import.php:163 #, fuzzy, php-format #| msgid "" -#| "You probably tried to upload too large file. Please refer to %" -#| "sdocumentation%s for ways to workaround this limit." +#| "You probably tried to upload too large file. Please refer to " +#| "%sdocumentation%s for ways to workaround this limit." msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." @@ -747,7 +747,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "Orqaga" @@ -772,7 +772,7 @@ msgid "General Settings" msgstr "Aloqalarning asosiy imkoniyatlari" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "Parolni o‘zgartirish" @@ -871,7 +871,7 @@ msgstr "Versiya haqida ma`lumot" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentatsiya" @@ -1195,7 +1195,7 @@ msgstr "Indеks(lar)ni saqlash" msgid "Edit Index" msgstr "Tahrirlash usuli" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s) to index" @@ -1233,7 +1233,7 @@ msgstr "Hech bo‘lmaganda bitta maydon kiritish shart." #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1270,12 +1270,12 @@ msgstr "Xost nomi bo‘sh!" msgid "The user name is empty!" msgstr "Foydalanuvchi nomi belgilanmagan!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "Parol belgilanmagan!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" @@ -1501,7 +1501,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1814,7 +1814,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -2071,7 +2071,7 @@ msgstr "SQL so‘rovlari qutisi" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2356,7 +2356,7 @@ msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "E`tibor bermaslik" @@ -2549,7 +2549,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "Barchasini ko‘rsatish" @@ -2665,7 +2665,7 @@ msgstr "Indеks(lar)ni saqlash" msgid "Show hidden navigation tree items." msgstr "Chap ramkada logotipni ko‘rsatish" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main frame" @@ -3245,16 +3245,16 @@ msgid "Delete" msgstr "O‘chirish" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -3392,7 +3392,7 @@ msgid "During current session" msgstr "Joriy xatoliklarni tashlab kеtish" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3851,8 +3851,8 @@ msgstr "SQL so‘rovi muvaffaqiyatli bajarildi" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." @@ -3892,6 +3892,7 @@ msgstr "Belgilanganlarni:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3907,12 +3908,12 @@ msgstr "O‘zgartirish" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -4119,7 +4120,7 @@ msgid "" msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "Server" @@ -4134,11 +4135,11 @@ msgstr "Namoyish" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -4154,7 +4155,7 @@ msgstr "Tuzilishi" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -4180,9 +4181,9 @@ msgstr "Qo‘yish" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "Privilegiyalar" @@ -4244,9 +4245,9 @@ msgid "Central columns" msgstr "CHAR maydonidagi ustunlar soni" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "Ma`lumotlar bazalari" @@ -4375,7 +4376,7 @@ msgid "Recent" msgstr "Tozalash" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "Variables" msgid "Favorite tables" @@ -4453,7 +4454,7 @@ msgstr "Sortirovka" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4842,14 +4843,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -5107,7 +5108,7 @@ msgstr "Maksimal hajmi: \"%s\"%s\"" msgid "MySQL said: " msgstr "MySQL javobi: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "So‘rov tahlili" @@ -5119,7 +5120,7 @@ msgstr "Tahlil kerak emas" msgid "Without PHP Code" msgstr "PHP-kod olib tashlash" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "PHP-kod" @@ -5245,13 +5246,13 @@ msgstr "Tavsifi" msgid "Use this value" msgstr "Ushbu qiymatni ishlatish" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5698,7 +5699,7 @@ msgid "Set value: %s" msgstr "Quyidagi qiymatni o‘rnatish: \"%s\"" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "Asl qiymatlarni tiklash" @@ -5886,9 +5887,9 @@ msgstr "" "real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog " "adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, " "serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga " -"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/" -"kbd] deb belgilash tavsiya etiladi." +"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http" +"[/kbd] deb belgilash tavsiya etiladi." #: libraries/config/ServerConfigChecks.class.php:440 #, fuzzy, php-format @@ -6232,41 +6233,53 @@ msgstr "Jadvalga kirishda ko‘rsatiladigan yorliq" msgid "Default table tab" msgstr "Jadval yorlig‘i" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "Jadval va maydon nomlarini teskari qo‘shtirnoqqa olish" + #: libraries/config/messages.inc.php:95 #, fuzzy +#| msgid "Enclose table and field names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "Jadval va maydon nomlarini teskari qo‘shtirnoqqa olish" + +#: libraries/config/messages.inc.php:97 +#, fuzzy #| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." msgstr "Jadval tuzilishi tahlili" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "Jadval tuzilishi tahlili" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" "Serverlar ro‘yxatini pastga tushadigan menyu o‘rniga oddiy ro‘yxat shaklida " "ko‘rsatish." -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "Serverlar ro‘yxatini ko‘rsatish" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Jadvalga xizmat ko‘rsatish" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 #, fuzzy #| msgid "" #| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " @@ -6278,39 +6291,39 @@ msgstr "" "Skript ishlashi mumkin bo‘lgan sekundlar soni (chegaramaslik uchun [kbd]0[/" "kbd] kiriting)" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "Maksimum bajarilish vaqti" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Statements" msgid "Use %s statement" msgstr "Tavsif" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "Fayl kabi saqlash" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "Fayl kodirovkasi" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "Siqish" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -6322,74 +6335,74 @@ msgstr "Siqish" msgid "Put columns names in the first row" msgstr "Maydon nomlarini birinchi qatorga joylashtirish" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" msgstr "Maydon qiymatlari quyidagi belgi ichiga olingan " -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" msgstr "Belgi oldida quyidagi belgi mavjud " -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with" msgstr "NULL qiymatni quyidagiga almashtirish" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Maydonlar ichidagi satrdan-satrga ko‘chirish belgilarini olib tashlash" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Qatorlar bo‘luvchisi" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" msgstr "Qatorlar bo‘luvchisi" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-versiyasi" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "Ma`lumotlar bazasi nomi shabloni" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "Server nomi shabloni" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "Jadval nomi shabloni" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -6400,149 +6413,149 @@ msgstr "Jadval nomi shabloni" msgid "Dump table" msgstr "Jadvallar soni: \"%s\"" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "Jadvalga sarlavha qo‘shish" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "Jadval sarlavhasi" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "Jadval sarlavhasi (davomi)" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "Belgi identifikatori" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME turi" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "Aloqalar" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Eskport turi" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "Serverga saqlash" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "Mavjud fayl(lar) ustidan yozish" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "Fayl nomi shablonini yodda saqlash" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Jadval va maydon nomlarini teskari qo‘shtirnoqqa olish" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL bilan moslik rejimi" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "Tuzish, yangilash va tekshirish sanalari" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "Kechiktirilgan qo‘yish (DELAYED INSERTS) dan foydalanish" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 #, fuzzy #| msgid "Export views" msgid "Export views as tables" msgstr "Ko‘rinishlarni eksport qilish" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Use hexadecimal for BLOB" msgid "Use hexadecimal for BINARY & BLOB" msgstr "BLOB turidagi ma`lumotlarni o‘n oltilik shaklda namoyish etish" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "E`tibor bermaslik (IGNORE) qo‘yilmalardan foydalanish" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "Tuzilayogan so‘rovning maksimal uzunligi" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Jadvallarni eksport qilish" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "Tranzaksiyaga eksportni qo‘shish" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "Vaqtni UTC shaklda eksport qilish" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 #, fuzzy #| msgid "Force secured connection while using phpMyAdmin" msgid "Force secured connection while using phpMyAdmin." msgstr "phpMyAdmin ishlatilganda xavfsiz (SSL) ulanishga majbur qilish" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "Xavfsiz (SSL) ulanishga majbur qilish" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 #, fuzzy #| msgid "" #| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " @@ -6554,192 +6567,192 @@ msgstr "" "Tashqi kalit menyusining tartiblash usuli: [kbd]content[/kbd] - murojaat " "ma`lumotlari bo‘yicha, [kbd]id[/kbd] - kalit qiymatlar bo‘yicha" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "Tashqi kalit menyusi tartibi" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "Agar kamroq qiymat bo‘lsa, pastga tushuvchi menyu ishlatiladi" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "Tashqi kalit chegaralari" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "Ko‘rib chiqish usul" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "Ko‘rib chiqish usulini sozlash" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options." msgstr "Eksport afzalliklarini sozlash" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "Tahrirlash usuli" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 #, fuzzy #| msgid "Customize edit mode" msgid "Customize edit mode." msgstr "Tahrirlash usulini sozlash" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "Eksport" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 #, fuzzy #| msgid "Customize default export options" msgid "Customize default export options." msgstr "Eksport afzalliklarini sozlash" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "Funksiyalar" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generatsiya qilish" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "Import" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "Import afzalliklarini sozlash" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "Import/Eksport" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "Import va eksport kataloglari va qisish usullarini belgilash" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 #, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" msgstr "Navigatsiya paneli" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel." msgstr "Navigatsiya paneli ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "Serverlar" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "Serverlar ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "Jadvallar ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 #, fuzzy #| msgid "Main frame" msgid "Main panel" msgstr "Asosiy ramka" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "Boshqa sozlanishlar" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "Boshqa joyga sig‘magan sozlanishlar" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Sahifa raqami: " -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "So‘rovlar oynasi ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "Xavfsizlik" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -6751,27 +6764,27 @@ msgstr "" "Esda tuting, phpMyAdmin - bu faqatgina foydalanuvchi interfeysi bo‘lib, " "uning xususiyatlari MySQL-serverining funksiyalarini chegaralamaydi" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "Asosiy sozlanishlar" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Autentifikatsiya usuli" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings." msgstr "Autentifikatsiya usuli" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "Server konfiguratsiyasi" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -6783,19 +6796,19 @@ msgstr "" "Kengaytirilgan server konfiguarsiyasi, agar ularning ma`nosini aniq " "bilmasangiz, yaxshisi, ularga tegmang" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "Serverning ulanish parametrlarini kiritish" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Konfiguratsion fayl" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "figure phpMyAdmin database to gain access to additional features, see ../" @@ -6811,143 +6824,143 @@ msgstr "" "Documentation.html#linked-tables]ulangan jadvallar infratuzilmasini[/a] " "qarab chiqing" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "Eksport tanlovlarini moslashtirish" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "Import tanlovlarini moslashtirish" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "Navigatsiya panelini moslashtirish" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 #, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" msgstr "Asosiy ramkani moslashtirish" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL so‘rovlari" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL so‘rovlari qutisi" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "SQL so‘rovlari qutisida ko‘rsatiladigan bog‘larni sozlash" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings." msgstr "SQL so‘rovlari" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "Boshlang‘ich" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "Boshlang‘ich sahifani sozlash" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 #, fuzzy #| msgid "Database for user" msgid "Database structure" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 #, fuzzy #| msgid "Database for user" msgid "Table structure" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "Yorliqlar" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "Yorliqlar qanday ishlashini tanlang" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Aloqalar sxemasi" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "Qog‘oz o‘lchami" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Matnmaydonini ishlatish" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields." msgstr "Eksport tanlovlarini moslashtirish" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! matn" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Eksport afzalliklarini sozlash" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Ogohlantirish" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6959,15 +6972,15 @@ msgstr "" "Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/Gzip]" "gzip[/a] yordamida siqishni yoqish" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv uchun qo‘shimcha parametrlar" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6979,11 +6992,11 @@ msgstr "" "Agar yoqilgan bo‘lsa, phpMyAdmin, hatto so‘rovlardan biri barbod bo‘lganda " "ham, ko‘p qismli so‘rovlarni hisoblashni davom etadi" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "Ko‘p qismli so‘rovlardagi xatolarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6993,28 +7006,28 @@ msgstr "" "ruxsat berish. Bu katta fayllarni yuklash uchun yaxshi usul, lekin u " "tranzaksiyalarni buzishi mumkin." -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "Qisman import: uzishga ruxsat berish" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -7026,81 +7039,81 @@ msgstr "" "Import fayl formati; yodda tutingki, ushbu ro‘yxat (ma`lumotlar bazasi, " "jadval) joylashishiga bog‘liq va faqat SQL ishlaydi" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "Import qilinayotgan fayl formati" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "\"LOCAL\" kalit so‘zini ishlatish" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "Birinchi qatorga ustun nomlari" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "Bo‘sh qatorlarni import qilmaslik" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Pul birliklarini import qilish (masalan, $5.00 ni 5.00 ga)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" "Foizlarni mos o‘nli kasrlar kabi import qilish (masalan, 12.00% o‘rniga 0.12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start." msgstr "" "Fayl boshidagi e`tibor berish kerak bo‘lmagan qatorlar (so‘rovlar) soni" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "Qisman import: so‘rovlarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nol qiymatlari uchun \"AUTO_INCREMENT\" ishlatmaslik" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "Bir vaqtning o‘zidanechta qator qo‘yilishi mumkin" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "Qo‘yilgan qatorlar soni" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "SQL so‘rovi ko‘rsatilganda ishlatiladigan belgilarning maksimal soni" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -7112,11 +7125,11 @@ msgstr "" "ulanganbo‘lsa, unda YOLG‘ON (FALSE) tanlovi boshqa serverlardan chiqish " "unitilishiga olib kelishi mumkin." -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "Chiqishda barcha \"cookies\"larni o‘chirish" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -7128,11 +7141,11 @@ msgstr "" "cookie-autentifikatsiya usulidan foydalanilganda oldingi login sessiyasi " "qayta chaqirilib olinishi kerakmi" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "Foydalanuvchi nomini chaqirib olish" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -7144,55 +7157,55 @@ msgstr "" "sessiya uchun saqlanadi va brauzer oynasi yopilgan zahoti o‘chiriladi. Bu " "qiymat ishonchsiz muhitlar uchun tavsiya etiladi." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "Login ma`lumotini cookie-da saqlash" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "" "cookie-login usuli qancha vaqt (sekundlarda) yaroqli bo‘lishini belgilang" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "cookie-login yaroqligi" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "SQL so‘rovi ko‘rsatilganda ishlatiladigan belgilarning maksimal soni" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "SQL so‘rovining maksimal uzunligi" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "Ma`lumotlar bazalarining maksimal soni" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -7202,13 +7215,13 @@ msgstr "" "Birinchi jadvalga nisbatan to‘laligicha qidiruv ishlatgan holda bajarilgan " "birlashma so‘rovlar soni." -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum size for temporary sort files" msgid "Maximum items on first level" msgstr "Vaqtinchalik indeks fayllarining maksimal hajmi" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 #, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" @@ -7218,11 +7231,11 @@ msgstr "" "Birinchi jadvalga nisbatan to‘laligicha qidiruv ishlatgan holda bajarilgan " "birlashma so‘rovlar soni." -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -7231,21 +7244,21 @@ msgstr "" "ko‘rsatilgan qiymatdan ko‘p bo‘lsa, \"Oldingi\" va \"Keyingi\" bog‘lanishlar " "ko‘rsatiladi." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "Ko‘rsatiladigan qatorlarning maksimal soni" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "Maksimal jadvallar soni" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -7257,45 +7270,45 @@ msgstr "" "Skript uchun ajratiladigan baylardagi xotira miqdori, masalan [kbd]32M[/kbd] " "([kbd]0[/kbd] - chegaralanmagan)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "Xotira miqdori" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show logo in left frame" msgid "Show databases navigation as tree" msgstr "Chap ramkada logotipni ko‘rsatish" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel." msgstr "Chap ramkada logotipni ko‘rsatish" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "Logotipni ko‘rsatish" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "Show logo in left frame" msgid "URL where logo in the navigation panel will point to." msgstr "Chap ramkada logotipni ko‘rsatish" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Logotip bog‘langan URL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -7307,31 +7320,31 @@ msgstr "" "Bog‘langan sahifani bosh oynada ([kbd]bosh[/kbd]) yoki yangi oynada ([kbd]" "yangi[/kbd]) ochish" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Logotip bog‘langan nishon" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." msgstr "Chap ramkaning yuqori qismida server tanlovini ko‘rsatish" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "Server tanlovini ko‘rsatish" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "Tezkor murojaat piktogrammasi uchun nishon" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "Tezkor murojaat piktogrammasi uchun nishon" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "" @@ -7339,19 +7352,19 @@ msgid "" "display a filter box." msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of items to display the filter box" msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of databases to display the database filter box" msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " @@ -7363,105 +7376,105 @@ msgstr "" "Yengil versiya; ma`lumotlar bazalarini daraxtda ko‘rsatish (quyida " "belgilangan satr bilan bo‘linadi)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "Ma`lumotlar bazalarini daraxtning turli darajalariga bo‘luvchi satr" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "Ma`lumotlar bazasi daraxtining bo‘luvchisi" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "Jadvallarni daraxtning turli darajalariga bo‘luvchi satr" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "Jadval daraxtining bo‘luvchisi" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "Jadvallar daraxtining maksimum chuqurligi" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "Sichqoncha kursori turgan serverni belgilash" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "Belgilashni yoqish" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Iconic navigation bar" msgid "Enable navigation tree expansion" msgstr "Piktogrammali navigatsiya menyusi" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Kuzatilmagan jadvallar" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Jadval sortirovkasini o‘zgartirish" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, 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:492 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "Iconic navigation bar" msgid "Table navigation bar" msgstr "Piktogrammali navigatsiya menyusi" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, fuzzy #| msgid "use GZip output buffering for increased speed in HTTP transfers" msgid "Use GZip output buffering for increased speed in HTTP transfers." @@ -7469,11 +7482,11 @@ msgstr "" "HTTP orqali ma`lumot uzatishda yuqori tezlikka erishish uchun GZip " "buferizatsiyadan foydalaning" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip buferizatsiya" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "d]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -7485,74 +7498,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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "Asl tartiblash qoidasi" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, 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:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "Doimiy ulanishlar" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 #, 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:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Binar (ikkilik) maydonlarni himoyalash" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 #, fuzzy #| msgid "" #| "ble if you want DB-based query history (requires phpMyAdmin configuration " @@ -7567,137 +7580,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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "Doimiy so‘rovlar tarixi" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, 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:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "So‘rovlar tarixi uzunligi" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "Kodirovkalash funksiyasi" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Jadval nomini o‘zgartirish" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "Asl tartiblash qoidasi" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Oqimli tiklash" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display field" msgid "Relational display" msgstr "Aloqador maydon qiymati" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "Serverlar ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "Saqlash direktoriyasi" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "Agar ishlatilmasa bo‘sh qoldiring" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Autentifikatsiya tartibi" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "Asl qoidalarni ishlatish uchun bo‘sh qoldiring" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Autentifikatsiya qoidalari" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "Parolsiz qirishga ruxsat bеrish" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "\"root\"ga kirishga ruxsat berish" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "Sessiya qiymatlari" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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." @@ -7705,11 +7718,11 @@ msgstr "" "HTTP Avtorizatsiya vaqtida ko‘rsatiladigan Oddiy HTTP Avtorizatsiya Bo‘limi " "nomi" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP Bo‘limi" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -7724,21 +7737,21 @@ msgstr "" "konfiguratsion fayl yo‘li (hujjatlar katalogiga joylashtirilmagan; tavsiya " "etiladi: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "\"SweKey\" konfiguratsiya fayli" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "Foydalaniladigan autentifikatsiya usuli" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "Autentifikatsiya usuli" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" @@ -7750,11 +7763,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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "Xatcho‘plar jadvali" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -7766,35 +7779,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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "Ustun ma`lumotlari jadvali" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "MySQL serveiga ulanishni qisish" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "Ulanishni qisish" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "Ulanish turi" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "Nazorat foydalanuvchisi paroli" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -7808,60 +7821,60 @@ msgstr "" "batafsil ma`lumot [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" "da mavjud" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "Nazorat foydalanuvchisi" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 #, fuzzy #| msgid "Control user" msgid "Control host" msgstr "Nazorat foydalanuvchisi" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 #, fuzzy #| msgid "Control user" msgid "Control port" msgstr "Nazorat foydalanuvchisi" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, 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:608 +#: libraries/config/messages.inc.php:610 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 "" -"Ko‘proq ma`lumot uchun [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]" -"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" -"larga qarang" +"Ko‘proq ma`lumot uchun [a@https://sourceforge.net/p/phpmyadmin/" +"bugs/2606/]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL " +"Bugs\"[/a]larga qarang" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA ishlatishni o‘chirish" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "Bazalarni yashirish" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -7873,43 +7886,43 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL so‘rovlari tarixi jadvali" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, 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:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "Sеrvеr xost nomi" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "Chiqish URL" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 #, 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:625 +#: libraries/config/messages.inc.php:627 #, 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:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -7917,16 +7930,16 @@ msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]" -"\"pma_pdf_pages\"[/kbd]" +"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: " +"[kbd]\"pma_pdf_pages\"[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns table" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -7935,20 +7948,20 @@ msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" -"\"pma_table_coords\"[/kbd]" +"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: " +"[kbd]\"pma_table_coords\"[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "Parolsiz ulanishga harakat qilish" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "Parolsiz ulanish" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 #, fuzzy #| msgid "" #| " can use MySQL wildcard characters (% and _), escape them if you want use " @@ -7962,36 +7975,36 @@ msgstr "" "oldiga teskari egri chiziq (\\) qo‘yishingiz kerak, masalan \\\"my\\_db\\" "\" (lekin \"my_db\" emas)" -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "Faqat ro‘yxatdagi bazalarni ko‘rsatish" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, 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:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "\"config\" autentifikatsiya usuli paroli" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]" -"\"pma_pdf_pages\"[/kbd]" +"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: " +"[kbd]\"pma_pdf_pages\"[/kbd]" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF-sxema: sahifalar jadvali" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -8004,28 +8017,28 @@ msgid "" msgstr "" "Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. " "Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]" -"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" -"\"phpmyadmin\"[/kbd]" +"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: " +"[kbd]\"phpmyadmin\"[/kbd]" -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ma`lumotlar bazasi nomi" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "Server porti" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -8036,13 +8049,13 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Foydalanuvchi nomini chaqirib olish" -#: 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]" @@ -8053,13 +8066,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 "Variables" msgid "Favorites table" msgstr "O‘zgaruvchilar" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -8071,11 +8084,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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "Aloqalar jadvali" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -8087,25 +8100,25 @@ msgstr "" "Namuna uchun [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "autentifikatsiya usullari[/a]ga qarang" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Kirish sessiyasi nomi" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "Kirish URL" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "Server soketi" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, fuzzy #| msgid "Enable SSL for connection to MySQL server" msgid "Enable SSL for connection to MySQL server." @@ -8113,11 +8126,11 @@ msgstr "" "SSL (Secure Sockets Layer - himoyalangan soketlar protokoli) ulanishdan " "foydalanish" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "SSL ulanishdan foydalanish" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -8126,16 +8139,16 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" -"\"pma_table_coords\"[/kbd]" +"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: " +"[kbd]\"pma_table_coords\"[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF-sxema: jadval koordinatalari" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "le to describe the display fields, leave blank for no support; gested: " @@ -8147,13 +8160,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:693 +#: libraries/config/messages.inc.php:695 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Maydonlar jadvalini ko‘rsatish" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -8164,53 +8177,53 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Jadvalni defragmentatsiyalash" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Tavsif" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -8221,25 +8234,25 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL so‘rovlari tarixi jadvali" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Avtomatik tiklash rejimi" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -8250,37 +8263,37 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 #, fuzzy #| msgid "Use Tables" msgid "Users table" msgstr "Jadvallarni ishlatish" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 #, fuzzy #| msgid "Use Host Table" msgid "User groups table" msgstr "Xostlar jadvalidan foydalanish" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]" @@ -8291,36 +8304,36 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "\"config\" autentifikatsiya usuli foydalanuvchisi" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 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:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "Ushbu serverning kengaytirilgan nomi" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "Barcha qatorlarni ko‘rsatishga ruxsat berish" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy #| msgid "" #| "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -8335,77 +8348,77 @@ msgstr "" "Esda tuting, ushbu tanlovni yoqishingiz [kbd]\"config\"[/kbd] " "autentifikatsiya usulidagi parolga ta`sir etmaydi" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "Parolni o‘zgartirish formasini ko‘rsatish" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "Ma`lumotlar bazasi tuzish formasini ko‘rsatish" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 #, fuzzy #| msgid "Show versions" msgid "Show Creation timestamp" msgstr "Vеrsiyalarni ko‘rsatish" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 #, fuzzy #| msgid "Show master status" msgid "Show Last check timestamp" msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Ochiq jadvallar ro‘yxati" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "Fuknsiyalarmaydonini ko‘rsatish" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "To‘rni ko‘rsatish" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -8417,15 +8430,15 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] funksiyasi " "natijasiga bog‘ ko‘rsatish" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "\"phpinfo()\" funksiyasiga bog‘ ko‘rsatish" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "MySQL serveri haqida batafsil ma`lumot ko‘rsatish" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -8434,22 +8447,22 @@ msgid "" msgstr "" "phpMyAdmin tomonidan generatsiya qilingan SQL so‘rovlarini ko‘rsatish kerakmi" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "Show SQL so‘rovlarini ko‘rsatish" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 #, fuzzy #| msgid "SQL Query box" msgid "Retain query box" msgstr "SQL so‘rovlari qutisi" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, fuzzy #| msgid "Allow to display database and table statistics (eg. space usage)" msgid "Allow to display database and table statistics (eg. space usage)." @@ -8457,11 +8470,11 @@ msgstr "" "Ma`lumotlar bazalari va jadvallar statiskasini (masalan, diskda egallagan " "joyi) ko‘rsatish" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "Statiskani ko‘rsatish" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy #| msgid "" #| "Mark used tables and make it possible to show databases with locked tables" @@ -8471,19 +8484,19 @@ msgstr "" "Ishlatilayotgan jadvallarni belgilash va qulflangan jadvallari mavjud " "bo‘lgan ma`lumotlar bazalarini ko‘rishga imkon berish" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "Qulflangan jadvallarni tashlab ketishlik" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " @@ -8496,59 +8509,59 @@ msgstr "" "[kbd]cookie[/kbd]-autentifikatsiya usulida cookie-larni shifrlash uchun " "ishlatiladigan sirli ibora" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "cookie-login yaroqligi" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR maydonidagi qatorlar soni" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Jadval yorlig‘i" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 #, fuzzy #| msgid "" #| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following " @@ -8566,22 +8579,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:791 +#: libraries/config/messages.inc.php:793 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:792 +#: libraries/config/messages.inc.php:794 #, 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:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "Import direktoriyasi" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 #, fuzzy #| msgid "Allow for searching inside the entire database" msgid "Allow for searching inside the entire database." @@ -8589,36 +8602,36 @@ msgstr "" "Ma`lumotlar bazasi ichidagi ma`lumotlarni to‘laligicha qidirishga ruxsat " "berish" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "Bazani qidirishdan foydalanish" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "Oxirgi versiyani tekshirish" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -8626,34 +8639,34 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 #, fuzzy #| msgid "Username" msgid "Proxy username" msgstr "Foydalanuvchi" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 #, fuzzy #| msgid "Password" msgid "Proxy password" msgstr "Parol" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -8665,54 +8678,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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 #, fuzzy #| msgid "Server port" msgid "Send error reports" msgstr "Server porti" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL so‘rovlari" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -8742,48 +8755,48 @@ msgstr "Autentifikatsiya tartibi" msgid "Signon authentication" msgstr "Autentifikatsiya tartibi" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "\"LOAD DATA\" ishlatilgan CSV" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "Open Document jadvali" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Rangni tanlash" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "Ma`lumotlar bazasi eksport parametrlari" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excel uchun CSV" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 #, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" @@ -9038,20 +9051,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "Parol yo‘q" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "Parol:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 #, fuzzy #| msgid "Re-type" msgid "Re-type:" @@ -9225,12 +9238,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: %3" -#| "$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: " +#| "%3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -9826,8 +9839,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -10332,7 +10345,7 @@ msgstr "Chiqish" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentatsiyasi" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -11030,8 +11043,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish " "ssenariysidan%2$s foydalanishingiz mumkin." @@ -11299,7 +11312,7 @@ msgstr "Maydon nomlarini birinchi qatorga joylashtirish" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -12445,7 +12458,7 @@ msgstr "" "bo‘limiga qo‘shing:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -12453,16 +12466,16 @@ msgstr "Foydalanuvchi nomi" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Foydalanuvchi nomi" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "Parol" @@ -12492,10 +12505,10 @@ msgstr "Server ID si" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "Xost" @@ -12509,40 +12522,40 @@ msgstr "" "sеrvеrlar ko‘rsatilmoqda." #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "Har qaysi xost" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "Lokal" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "Ushbu xost" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "Har qaysi foydalanuvchi" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "Matnmaydonini ishlatish" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "Xostlar jadvalidan foydalanish" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -12551,7 +12564,7 @@ msgstr "" "uning o‘rniga Xostlar jadvalidagi qiymatlar ishlatiladi." #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "Tasdiqlash" @@ -13410,7 +13423,7 @@ msgstr "Yo‘q" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -13486,14 +13499,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -13504,7 +13517,7 @@ msgid "Administration" msgstr "Administratsiya" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "Global privilegiyalar" @@ -13515,7 +13528,7 @@ msgid "Global" msgstr "Global" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" @@ -13534,155 +13547,155 @@ msgstr "" "Foydalanuvchilarni qo‘shish va privilegiyalar jadvalini qayta yuklamasdan " "privilegiyalar qo‘shishga ruxsat beradi." -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "Foydalanuvchi hisobi haqida ma`lumot" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "Matnmaydonini ishlatish" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "Parolni o‘zgartirmaslik" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "\"%s\" foydalanuvchining privilegiyalari bekor qilindi." -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Har qaysi foydalanuvchi" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" "Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " "privilegiyalarni berish." -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" "(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " "bazalariga to‘liq privilegiyalarni berish." -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "\"%s\" ma`lumotlar bazasiga barcha privilegiyalarni berish." -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 #, fuzzy #| msgid "View %s has been dropped." msgid "User has been added." msgstr "\"%s\" namoyishi o‘chirildi" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Foydalanuvchi" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "GRANT" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Bironta ham foydalanuvchi topilmadi." -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "Har qaysi" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "Global" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "Guruhlash belgisi" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "Privilegiyalarni tahrirlash" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "Bekor qilish" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "Serverlarni tahrirlash" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "va eskisini saqlash." -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." @@ -13690,131 +13703,131 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish…" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "Maydon privilegiyalari" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" "Ma`lumotlar bazalari nomlarida pastki chiziq (_) va foiz (%) belgilari " "ishlatilganda ular oldiga teskari egri chiziq (\\) qo‘yish kerak." -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " "ularni o‘chirish." -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" "Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "Privilegiyalar qayta yuklanmoqda" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "\"%s\" uchun privilegiyalar o‘zgartirildi." -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "\"%s\" o‘chirilmoqda" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" nomli foydalanuvchi mavjud!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegiyalar" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "Privilegiyalarni tahrirlash" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni " "to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi " "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." @@ -15798,23 +15811,23 @@ msgstr "Indeks keshi hajmi" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "Indeks turi:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User" msgid "Parser:" msgstr "Foydalanuvchi" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 #, fuzzy #| msgid "Comment" msgid "Comment:" msgstr "Izoh" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -16907,8 +16920,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -17043,8 +17056,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 @@ -18124,8 +18137,8 @@ msgstr "Maksimal ulanishlar soni " #~ "%s." #~ msgstr "" #~ "SQL sintaksisini tekshirib bo‘lmadi. PHP uchun zarur kengaytmalar " -#~ "o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%" -#~ "s qarang." +#~ "o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga" +#~ "%s qarang." #, fuzzy #~| msgid "Error: Relation not added." diff --git a/po/vi.po b/po/vi.po index d5656cbd6e..c92ab0f794 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-09 10:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Vietnamese \n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.3-dev\n" @@ -71,7 +71,7 @@ msgstr "Các chú thích của Bảng" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "Trường" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "Liên kết tới" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "Khóa Chính" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "Không" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -265,14 +265,14 @@ msgid "" msgstr "Cấu hình phpMyAdmin đã bị vô hiệu hóa. %sTìm hiểu lý do%s." #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "Bảng" @@ -285,7 +285,7 @@ msgid "Rows" msgstr "Bản ghi" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "Kích thước" @@ -372,9 +372,9 @@ msgstr "Trạng thái" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -571,15 +571,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -610,8 +610,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -683,7 +683,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -704,7 +704,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -779,7 +779,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "" @@ -999,7 +999,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1026,7 +1026,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1055,12 +1055,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1257,7 +1257,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1528,7 +1528,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1739,7 +1739,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1979,7 +1979,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2148,7 +2148,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2240,7 +2240,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2727,16 +2727,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2850,7 +2850,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3222,8 +3222,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3258,6 +3258,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3273,12 +3274,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3465,7 +3466,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3480,11 +3481,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3500,7 +3501,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3526,9 +3527,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3588,9 +3589,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3695,7 +3696,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "" @@ -3766,7 +3767,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4105,14 +4106,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4360,7 +4361,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4372,7 +4373,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4483,13 +4484,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4876,7 +4877,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5230,70 +5231,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5303,60 +5312,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5365,586 +5374,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5952,1045 +5961,1045 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Favorites table" msgstr "%s bảng" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -6998,52 +7007,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7051,80 +7060,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7144,44 +7153,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7385,20 +7394,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7533,8 +7542,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8024,8 +8033,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8480,7 +8489,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9117,8 +9126,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9341,7 +9350,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10237,22 +10246,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10280,10 +10289,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10295,45 +10304,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11048,7 +11057,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11113,14 +11122,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11129,7 +11138,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11138,7 +11147,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11155,253 +11164,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -12996,19 +13005,19 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 msgid "Parser:" msgstr "" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -13956,8 +13965,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14075,8 +14084,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/vls.po b/po/vls.po index 0f5d1ff816..1565ea6527 100644 --- a/po/vls.po +++ b/po/vls.po @@ -7,15 +7,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-12-23 23:39+0200\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: West Flemish \n" +"Language: vls\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vls\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.2-dev\n" @@ -71,7 +71,7 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -95,7 +95,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -151,8 +151,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -181,13 +181,13 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -210,13 +210,13 @@ msgstr "" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -265,14 +265,14 @@ msgid "" msgstr "" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "" @@ -285,7 +285,7 @@ msgid "Rows" msgstr "" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "" @@ -373,9 +373,9 @@ msgstr "" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -566,15 +566,15 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -605,8 +605,8 @@ msgstr "" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "" #: import.php:343 import.php:648 @@ -678,7 +678,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "" @@ -699,7 +699,7 @@ msgid "General Settings" msgstr "" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "" @@ -772,7 +772,7 @@ msgstr "" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "Dokumentoasje" @@ -992,7 +992,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "" @@ -1019,7 +1019,7 @@ msgstr "" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "" @@ -1048,12 +1048,12 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "" @@ -1250,7 +1250,7 @@ msgstr "" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1521,7 +1521,7 @@ msgstr "" #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1732,7 +1732,7 @@ msgstr "" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -1972,7 +1972,7 @@ msgstr "" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "" @@ -2233,7 +2233,7 @@ msgstr "" msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "" @@ -2716,16 +2716,16 @@ msgid "Delete" msgstr "" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2840,7 +2840,7 @@ msgid "During current session" msgstr "" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3214,8 +3214,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: libraries/DisplayResults.class.php:4560 @@ -3250,6 +3250,7 @@ msgstr "" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3265,12 +3266,12 @@ msgstr "" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3457,7 +3458,7 @@ msgid "" msgstr "" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "" @@ -3472,11 +3473,11 @@ msgstr "" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3492,7 +3493,7 @@ msgstr "" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3518,9 +3519,9 @@ msgstr "" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "" @@ -3580,9 +3581,9 @@ msgid "Central columns" msgstr "" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "" @@ -3690,7 +3691,7 @@ msgid "Recent" msgstr "" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "" @@ -3761,7 +3762,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4102,14 +4103,14 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -4357,7 +4358,7 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "" @@ -4369,7 +4370,7 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "" @@ -4480,13 +4481,13 @@ msgstr "" msgid "Use this value" msgstr "" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -4873,7 +4874,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "" @@ -5227,70 +5228,78 @@ msgstr "" msgid "Default table tab" msgstr "" +#: libraries/config/messages.inc.php:94 +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "" + #: libraries/config/messages.inc.php:95 +msgid "Enable autocomplete for table and column names" +msgstr "" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, php-format msgid "Use %s statement" msgstr "" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5300,60 +5309,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5362,586 +5371,586 @@ msgstr "" msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 msgid "Temporarily disable foreign key checks while importing" msgstr "" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -5949,1042 +5958,1042 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 msgid "Show databases navigation as tree" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 msgid "Target for second quick access icon" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 msgid "Enable navigation tree expansion" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 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:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 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:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 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:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 msgid "Relational display" msgstr "" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 msgid "For display Options" msgstr "" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 msgid "Session timezone" msgstr "" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 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:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 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:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 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:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 msgid "QBE saved searches table" msgstr "" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 msgid "" "Leave blank for no QBE saved searches support, suggested: [kbd]" "pma__savedsearches[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 msgid "Central columns table" msgstr "" -#: libraries/config/messages.inc.php:632 +#: libraries/config/messages.inc.php:634 msgid "" "Leave blank for no central columns support, suggested: [kbd]" "pma__central_columns[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:664 +#: libraries/config/messages.inc.php:666 msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 msgid "Favorites table" msgstr "" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 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:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." msgstr "" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 msgid "Designer and PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 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:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" -#: libraries/config/messages.inc.php:746 -msgid "Show Creation timestamp" -msgstr "" - -#: libraries/config/messages.inc.php:747 -msgid "" -"Show or hide a column displaying the Last update timestamp for all tables." -msgstr "" - #: libraries/config/messages.inc.php:748 -msgid "Show Last update timestamp" +msgid "Show Creation timestamp" msgstr "" #: libraries/config/messages.inc.php:749 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:750 -msgid "Show Last check timestamp" +msgid "Show Last update timestamp" msgstr "" #: libraries/config/messages.inc.php:751 msgid "" +"Show or hide a column displaying the Last check timestamp for all tables." +msgstr "" + +#: libraries/config/messages.inc.php:752 +msgid "Show Last check timestamp" +msgstr "" + +#: libraries/config/messages.inc.php:753 +msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:759 -msgid "Show detailed MySQL server information" -msgstr "" - -#: libraries/config/messages.inc.php:760 -msgid "" -"Defines whether SQL queries generated by phpMyAdmin should be displayed." -msgstr "" - #: libraries/config/messages.inc.php:761 -msgid "Show SQL queries" +msgid "Show detailed MySQL server information" msgstr "" #: libraries/config/messages.inc.php:762 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:763 libraries/sql_query_form.lib.php:328 -msgid "Retain query box" +#: libraries/config/messages.inc.php:763 +msgid "Show SQL queries" msgstr "" #: libraries/config/messages.inc.php:764 -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:765 -msgid "Show statistics" +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 +msgid "Retain query box" msgstr "" #: libraries/config/messages.inc.php:766 +msgid "Allow to display database and table statistics (eg. space usage)." +msgstr "" + +#: libraries/config/messages.inc.php:767 +msgid "Show statistics" +msgstr "" + +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 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:776 +#: libraries/config/messages.inc.php:778 msgid "Login cookie validity warning" msgstr "" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." msgstr "" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -6992,52 +7001,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]." msgstr "" -#: libraries/config/messages.inc.php:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7045,80 +7054,80 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 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:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 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:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 msgid "Enter executes queries in console" msgstr "" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "" @@ -7138,44 +7147,44 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "" @@ -7379,20 +7388,20 @@ msgstr "" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "" @@ -7527,8 +7536,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:526 @@ -8018,8 +8027,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:138 @@ -8474,7 +8483,7 @@ msgstr "" msgid "phpMyAdmin documentation" msgstr "" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "" @@ -9112,8 +9121,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9336,7 +9345,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "" @@ -10232,22 +10241,22 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "Gebrukersnoame:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "Gebrukersnoame" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "" @@ -10275,10 +10284,10 @@ msgstr "" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "" @@ -10290,45 +10299,45 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "" @@ -11045,7 +11054,7 @@ msgstr "" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -11110,14 +11119,14 @@ msgstr "" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "" @@ -11126,7 +11135,7 @@ msgid "Administration" msgstr "" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "" @@ -11135,7 +11144,7 @@ msgid "Global" msgstr "" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "" @@ -11152,253 +11161,253 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "Gebruker" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "" @@ -12991,21 +13000,21 @@ msgstr "" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "Gebruker:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "" @@ -13951,8 +13960,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:181 @@ -14070,8 +14079,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "" #: libraries/advisory_rules.txt:218 diff --git a/po/zh_CN.po b/po/zh_CN.po index 7cedf8f6a2..54b21eeae0 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2015-03-02 04:43+0200\n" "Last-Translator: zz \n" "Language-Team: Chinese (China) \n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.3-dev\n" @@ -65,7 +65,7 @@ msgstr "表注释:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -89,7 +89,7 @@ msgstr "字段" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -145,8 +145,8 @@ msgid "Links to" msgstr "链接到" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -175,13 +175,13 @@ msgstr "主键" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -204,13 +204,13 @@ msgstr "否" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -259,14 +259,14 @@ msgid "" msgstr "phpMyAdmin 高级功能尚未激活。请点击%s这里%s查看原因。" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "表" @@ -279,7 +279,7 @@ msgid "Rows" msgstr "行数" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "大小" @@ -369,9 +369,9 @@ msgstr "状态" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -564,15 +564,15 @@ msgstr "添加几何体" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -607,8 +607,8 @@ msgstr "完整插入" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "您想要上传的文件可能太大了,请参考%s文档%s来寻找解决方法。" #: import.php:343 import.php:648 @@ -688,7 +688,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "返回" @@ -711,7 +711,7 @@ msgid "General Settings" msgstr "常规设置" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "修改密码" @@ -786,7 +786,7 @@ msgstr "版本信息:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "文档" @@ -1056,7 +1056,7 @@ msgstr "添加索引" msgid "Edit Index" msgstr "编辑索引" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "添加 %s 个字段至索引" @@ -1091,7 +1091,7 @@ msgstr "至少要添加一个字段。" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "预览 SQL 语句" @@ -1120,12 +1120,12 @@ msgstr "主机名不能为空!" msgid "The user name is empty!" msgstr "用户名不能为空!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "密码不能为空!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "两次密码不一致!" @@ -1324,7 +1324,7 @@ msgstr "请至少添加一个数据!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1603,7 +1603,7 @@ msgstr "使用导入的设置建立图表失败。正在重设为默认设置… #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1814,7 +1814,7 @@ msgstr "显示查询框" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2063,7 +2063,7 @@ msgstr "数据点内容" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "忽略" @@ -2234,7 +2234,7 @@ msgstr "点击下箭头
以设置显示的字段。" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "显示全部" @@ -2336,7 +2336,7 @@ msgstr "隐藏导航面板" msgid "Show hidden navigation tree items." msgstr "显示隐藏的导航树节点。" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 #, fuzzy #| msgid "Customize main panel" @@ -2841,16 +2841,16 @@ msgid "Delete" msgstr "删除" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2988,7 +2988,7 @@ msgid "During current session" msgstr "忽略当前错误" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3374,8 +3374,8 @@ msgstr "您的 SQL 语句已成功运行。" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "此视图的行数最少有这么多。请参阅%s档案%s。" #: libraries/DisplayResults.class.php:4560 @@ -3410,6 +3410,7 @@ msgstr "选中项:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3425,12 +3426,12 @@ msgstr "修改" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3619,7 +3620,7 @@ msgid "" msgstr "索引 %1$s 和 %2$s 似乎是相同的,可以删除其中一个。" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "服务器" @@ -3634,11 +3635,11 @@ msgstr "视图" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3654,7 +3655,7 @@ msgstr "结构" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3680,9 +3681,9 @@ msgstr "插入" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "权限" @@ -3744,9 +3745,9 @@ msgid "Central columns" msgstr "文本框列" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "数据库" @@ -3851,7 +3852,7 @@ msgid "Recent" msgstr "近期访问" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "表收藏夹" @@ -3922,7 +3923,7 @@ msgstr "排序" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4277,20 +4278,21 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "单精度浮点数,取值范围从 -3.402823466E+38 到 -1.175494351E-38、0 以及从 " "1.175494351E-38 到 3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"双精度浮点数,取值范围从 -1.7976931348623157E+308 到 -2.2250738585072014E-" -"308、0 以及从 2.2250738585072014E-308 到 1.7976931348623157E+308" +"双精度浮点数,取值范围从 -1.7976931348623157E+308 到 " +"-2.2250738585072014E-308、0 以及从 2.2250738585072014E-308 到 " +"1.7976931348623157E+308" #: libraries/Types.class.php:336 msgid "" @@ -4558,7 +4560,7 @@ msgstr "最大限制:%s %s" msgid "MySQL said: " msgstr "MySQL 返回: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "解析 SQL" @@ -4570,7 +4572,7 @@ msgstr "略过解析 SQL" msgid "Without PHP Code" msgstr "无 PHP 代码" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "创建 PHP 代码" @@ -4685,13 +4687,13 @@ msgstr "说明" msgid "Use this value" msgstr "使用该值" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5092,7 +5094,7 @@ msgid "Set value: %s" msgstr "设置值:%s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "还原为默认值" @@ -5481,71 +5483,83 @@ msgstr "当进入表时默认显示的标签页。" msgid "Default table tab" msgstr "表默认标签页" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "给表名及字段名加上反引号" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "给表名及字段名加上反引号" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "是否隐藏对表结构的相关操作。" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "隐藏表结构操作" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "直接显示服务器列表而不使用下拉框。" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "列表显示服务器" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "禁止批量表维护操作,例如优化或修复数据库中选中的表。" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "禁止多表维护" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "设置脚本运行最长时间([kbd]0[/kbd] 为无限制)。" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "最长执行时间" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "添加 %s 语句" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "保存为文件" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "文件字符集" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "格式" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "压缩" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5555,60 +5569,60 @@ msgstr "压缩" msgid "Put columns names in the first row" msgstr "首行保存字段名" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "内容分隔符" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "内容转义符" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "将 NULL 替换为" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "删除内容中的回车换行符" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "字段分隔符" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "换行符" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel 版本" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "数据库名称模板" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "服务器名称模板" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "表名称模板" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5617,137 +5631,137 @@ msgstr "表名称模板" msgid "Dump table" msgstr "转储表" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "包含表说明" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "表说明" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "表说明续" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "标签" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME 类型" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "关系" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "导出方式" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "保存在服务器上" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "覆盖现有文件" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "记住文件名模板" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "添加自增值" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "给表名及字段名加上反引号" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL 兼容模式" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE 选项:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "创建/更新/检查日期" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "使用延迟插入" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "禁止外键约束" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "将视图作为表导出" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "添加 %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "使用十六进制表示 BINARY 和 BLOB 数据" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "使用忽略插入" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "在插入数据时使用的语法" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "查询语句的最大长度" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "导出类型" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "使用事务执行导出" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "导出时间为协调世界时" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "强制使用安全连接访问 phpMyAdmin。" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "强制 SSL 连接" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5755,160 +5769,160 @@ msgstr "" "外键下拉框中选项的排序顺序,[kbd]content[/kbd] 为关联内容,[kbd]id[/kbd] 为键" "值。" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "外键下拉框顺序" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 #, fuzzy #| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." msgstr "下拉框中选项个数的限制" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "外键限制" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "浏览模式" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Customize browse mode" msgid "Customize browse mode." msgstr "自定义浏览模式" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "自定义默认选项。" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "开发" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "phpMyAdmin 开发设置。" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "编辑模式" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "自定义编辑模式。" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "导出选项" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "自定义默认导出选项。" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "功能" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "常规" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "设置某些常用选项。" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "导入选项" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 #, fuzzy #| msgid "Customize default common import options" msgid "Customize default common import options." msgstr "自定义默认导入选项" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "导入 / 导出" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 #, fuzzy #| msgid "Set import and export directories and compression options" msgid "Set import and export directories and compression options." msgstr "设置导入和导出文件夹以及压缩选项" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 #, fuzzy #| msgid "Databases display options" msgid "Databases display options." msgstr "数据库显示选项" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "导航面板" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 #, fuzzy #| msgid "Customize appearance of the navigation panel" msgid "Customize appearance of the navigation panel." msgstr "自定义导航面板" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "服务器" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 #, fuzzy #| msgid "Servers display options" msgid "Servers display options." msgstr "服务器显示选项" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 #, fuzzy #| msgid "Tables display options" msgid "Tables display options." msgstr "表显示选项" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "主面板" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "微软 Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "其它核心设置" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Settings that didn't fit anywhere else" msgid "Settings that didn't fit anywhere else." msgstr "暂时没有明确分类的设置" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "页面标题" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5916,19 +5930,19 @@ msgstr "" "设置浏览器标题栏所显示的文字。参见[doc@cfg_TitleTable]文档[/doc]中关于可以取" "得特殊值的魔术字符串。" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "查询窗口" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "自定义查询窗口选项" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "安全" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 #, fuzzy #| msgid "" #| "Please note that phpMyAdmin is just a user interface and its features do " @@ -5938,25 +5952,25 @@ msgid "" "limit MySQL." msgstr "请注意 phpMyAdmin 只是提供了一个用户界面,其功能不会对 MySQL 造成限制" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "基本设置" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "认证" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 #, fuzzy #| msgid "Authentication settings" msgid "Authentication settings." msgstr "认证设置" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "服务器设置" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 #, fuzzy #| msgid "" #| "Advanced server configuration, do not change these options unless you " @@ -5966,17 +5980,17 @@ msgid "" "what they are for." msgstr "高级服务器设置,如果您不知道这些选项是什么意思,请不要修改" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 #, fuzzy #| msgid "Enter server connection parameters" msgid "Enter server connection parameters." msgstr "请输入服务器连接参数" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "高级功能" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 #, fuzzy #| msgid "" #| "Configure phpMyAdmin configuration storage to gain access to additional " @@ -5990,68 +6004,68 @@ msgstr "" "设置 phpMyAdmin 高级功能以获得更多功能,参见文档 [doc@linked-tables]" "phpMyAdmin 高级功能[/doc]" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "追踪变化" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "追踪数据库的改变。需要 phpMyAdmin 高级功能。" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "自定义导出选项" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "自定义导入选项" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "自定义导航面板" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "自定义主面板" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL 查询" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL 查询框" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Customize links shown in SQL Query boxes" msgid "Customize links shown in SQL Query boxes." msgstr "自定义在 SQL 查询框中显示的链接" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 #, fuzzy #| msgid "SQL queries settings" msgid "SQL queries settings." msgstr "SQL 查询设置" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "首页" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 #, fuzzy #| msgid "Customize startup page" msgid "Customize startup page." msgstr "自定义首页" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "数据库结构" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 #, fuzzy #| msgid "" #| "Choose which details to show in the database structure (list of tables)" @@ -6059,65 +6073,65 @@ msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "设置在数据库结构(表列表)中显示哪些细节" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "表结构" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 #, fuzzy #| msgid "Settings for the table structure (list of columns)" msgid "Settings for the table structure (list of columns)." msgstr "表结构(字段列表)的设置" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "标签" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 #, fuzzy #| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." msgstr "设置您希望的标签行为" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "显示关系大纲" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "纸张大小" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "文本字段" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 #, fuzzy #| msgid "Customize text input fields" msgid "Customize text input fields." msgstr "自定义文本输入框" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! 文本" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "自定义默认选项" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "警告" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 #, fuzzy #| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "禁止部分 phpMyAdmin 发出的警告" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " @@ -6128,15 +6142,15 @@ msgid "" msgstr "" "允许在导入和导出时使用 [a@http://zh.wikipedia.org/wiki/Gzip]gzip[/a] 压缩" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv 的额外参数" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 #, fuzzy #| msgid "" #| "If enabled, phpMyAdmin continues computing multiple-statement queries " @@ -6147,11 +6161,11 @@ msgid "" msgstr "" "若启用,在执行多语句查询时即使有错误发生,phpMyAdmin 也会继续执行其它语句" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "忽略多语句查询中的错误" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6160,28 +6174,28 @@ msgstr "" "允许脚本在即将超时时中断导入。尽管这样会中断事务,但在导入大文件时也许是个好" "方法。" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "部分导入:允许中断" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "禁止外键约束" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "忽略插入错误" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "替换表的数据" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "" #| "Default format; be aware that this list depends on location (database, " @@ -6193,62 +6207,62 @@ msgstr "" "默认格式;请注意根据位置(数据库或表)的不同该列表将有所变化,只有 SQL 是一直" "可用的" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "导入文件的格式" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "使用 LOCAL 关键字" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "首行为字段名" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "不导入空行" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "导入货币($5.00 将被导入为 5.00)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "导入百分数为小数(12.00% 将被导入为 .12)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 #, fuzzy #| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." msgstr "要跳过的查询数量" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "部分导入:跳过查询" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "值为零时不自增" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "滑动区域初始状态" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 #, fuzzy #| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." msgstr "一次可以插入的行数" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "插入的行数" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 #, fuzzy #| msgid "" #| "Maximum number of characters shown in any non-numeric column on browse " @@ -6257,11 +6271,11 @@ msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "浏览非数字字段时最多显示的字数" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "字段字数限制" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6271,11 +6285,11 @@ msgstr "" "退出。若设为 FALSE 且当您连接到多台服务器时,您可能会容易忘记退出其它的服务" "器。" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "退出时删除所有 cookies" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 #, fuzzy #| msgid "" #| "Define whether the previous login should be recalled or not in cookie " @@ -6285,11 +6299,11 @@ msgid "" "kbd] authentication mode." msgstr "设置在 cookie 认证下是否能自动重复上次登录。" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "显示上次登录的用户名" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6299,56 +6313,56 @@ msgstr "" "设置浏览器需要保存登录 cookie 多久(单位:秒)。若设为默认的 0 表示其仅作用于" "当前会话,并在您关闭浏览器窗口后立即删除。推荐在不安全的环境下使用默认设置。" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "登录 cookie 存储" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 #, fuzzy #| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." msgstr "设置登录 cookie 的有效期(单位:秒)" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "登录 cookie 有效期" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 #, fuzzy #| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." msgstr "将 LONGTEXT 字段的文本框放大一倍" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "放大 LONGTEXT 的文本框" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." msgstr "显示 SQL 语句时的最大字数" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "SQL 最大显示长度" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "用户设置不能超过该值" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Maximum number of databases displayed in database list" msgid "Maximum number of databases displayed in database list." msgstr "在数据库列表中最多显示的数据库个数" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "最大数据库数量" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " @@ -6358,13 +6372,13 @@ msgid "" "the navigation tree." msgstr "每页导航树所能显示的最大项数" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Maximum items in branch" msgid "Maximum items on first level" msgstr "节点中最大项数" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 #, fuzzy #| msgid "" #| "The number of items that can be displayed on each page of the navigation " @@ -6374,11 +6388,11 @@ msgid "" "tree." msgstr "每页导航树所能显示的最大项数" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "节点中最大项数" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6386,21 +6400,21 @@ msgstr "" "浏览结果集时显示的行数。若结果集总行数超过该值,将会显示 \"上一页\" 和 \"下一" "页\" 的链接。" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "显示的最多行数" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." msgstr "在表列表中最多显示的表个数" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "最大表数量" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 #, fuzzy #| msgid "" #| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " @@ -6410,45 +6424,45 @@ msgid "" "([kbd]0[/kbd] for no limit)." msgstr "一个脚本可分配的内存大小,如 [kbd]32MB[/kbd]([kbd]0[/kbd] 为无限制)" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "内存限制" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "显示隐藏的导航树节点。" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show logo in navigation panel." msgstr "在导航面板中显示徽标" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "显示徽标" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 #, fuzzy #| msgid "URL where logo in the navigation panel will point to" msgid "URL where logo in the navigation panel will point to." msgstr "导航面板中徽标指向的链接地址" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "徽标链接地址" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 #, fuzzy #| msgid "" #| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " @@ -6458,45 +6472,45 @@ msgid "" "([kbd]new[/kbd])." msgstr "在主窗口([kbd]main[/kbd])或新窗口([kbd]new[/kbd])打开目标页面" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "徽标链接目标" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 #, fuzzy #| msgid "Display server choice at the top of the navigation panel" msgid "Display server choice at the top of the navigation panel." msgstr "在导航面板顶部显示可选的服务器" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "显示服务器选择" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "快速访问图标的目标" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "快速访问图标的目标" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "设置达到多少个项(表、视图、程序和事件)时将显示筛选框。" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "显示筛选框的最少项数" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "设置达到多少个数据库时将显示数据库筛选框" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 #, fuzzy #| msgid "" #| "Group items in the navigation tree (determined by the separator defined " @@ -6506,113 +6520,113 @@ msgid "" "below)." msgstr "将导航树中的项分组(根据下面设置的分隔符分组)" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "分组树中的项" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 #, fuzzy #| msgid "String that separates databases into different tree levels" msgid "String that separates databases into different tree levels." msgstr "将数据库分为不同层级的字符串" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "数据库树分隔符" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 #, fuzzy #| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." msgstr "将表分为不同层级的字符串" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "表树分隔符" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "表树最大深度" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." msgstr "高亮鼠标指针所在位置的服务器" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "启用高亮" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "表导航条" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." msgstr "最近使用的表的最大数量;设为 0 为禁用" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." msgstr "最近使用的表的最大数量;设为 0 为禁用" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "最近使用的表" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 #, fuzzy #| msgid "These are Edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." msgstr "它们是编辑、复制和删除链接" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "表行链接显示位置" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 #, 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:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "自然排序" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 #, fuzzy #| msgid "Use only icons, only text or both" msgid "Use only icons, only text or both." msgstr "仅使用图标、文字或都有" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "表导航条" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 #, 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:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip 输出缓冲" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " @@ -6624,21 +6638,21 @@ msgstr "" "[kbd]SMART[/kbd] - 即对 TIME、DATE、DATETIME 和 TIMESTAMP 类型的字段递减排" "序,其它字段递增" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "默认排序" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 #, fuzzy #| msgid "Use persistent connections to MySQL databases" msgid "Use persistent connections to MySQL databases." msgstr "在连接到 MySQL 数据库时使用持久连接" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "持久连接" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " @@ -6650,11 +6664,11 @@ msgid "" "configuration storage could not be found." msgstr "禁止在缺少 phpMyAdmin 高级功能所需数据表时在数据库结构页中显示默认警告" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed if a difference between the " @@ -6664,11 +6678,11 @@ msgid "" "MySQL library and server is detected." msgstr "禁止显示检测到MySQL库版本与服务器版本不同时的默认警告" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "服务器/程序库版本不同警告" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -6678,29 +6692,29 @@ msgid "" "column names in a table are reserved MySQL words." msgstr "禁止在列名包含 MySQL 保留字时在数据库结构页中显示默认警告" -#: libraries/config/messages.inc.php:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "MySQL 保留字警告" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "显示菜单标签的方式" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "显示动作链接的方式" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 #, 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:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "保护二进制字段" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6709,51 +6723,51 @@ msgstr "" "允许使用基于数据库的查询历史 (需要 phpMyAdmin 高级功能)。如果禁用,将使用 " "JS 程序来显示查询历史 (关闭窗口即丢失)。" -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "持久查询历史" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 #, fuzzy #| msgid "How many queries are kept in history" msgid "How many queries are kept in history." msgstr "记录查询历史的数量" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "查询历史个数" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 #, 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:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "记录引擎" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 #, 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:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "记录表排序" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 #, fuzzy #| msgid "Default sorting order" msgid "Primary key default sort order" msgstr "默认排序" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 #, fuzzy #| msgid "" #| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -6761,91 +6775,91 @@ msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "每 X 单元格重复表头,要禁止此功能请设为 [kbd]0[/kbd]" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "重复表头" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "单元格编辑:触发操作" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "关联显示字段" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options" msgid "For display Options" msgstr "服务器显示选项" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "立刻存储所有已编辑的单元格" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 #, 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:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "保存文件夹" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 #, fuzzy #| msgid "Leave blank if not used" msgid "Leave blank if not used." msgstr "不使用请留空" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "主机认证模式" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 #, fuzzy #| msgid "Leave blank for defaults" msgid "Leave blank for defaults." msgstr "默认请留空" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "主机认证规则" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "允许空密码登录" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "允许 root 用户登录" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "会话值" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 #, 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:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP 提示信息" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 #, fuzzy #| msgid "" #| "The path for the config file for [a@http://swekey.com]SweKey hardware " @@ -6859,21 +6873,21 @@ msgstr "" "[a@http://swekey.com]SweKey 硬件认证 (外链,英文)[/a]的配置文件路径 (请勿置于" "你的文档根文件夹,推荐使用:/etc/swekey.conf)" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey 配置文件" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 #, fuzzy #| msgid "Authentication method to use" msgid "Authentication method to use." msgstr "要使用的认证方式" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "认证方式" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6881,11 +6895,11 @@ msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]书签 (外链,英文)[/a]功能请" "留空,推荐: [kbd]pma__bookmark[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "书签表" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -6895,35 +6909,35 @@ msgid "" "pma__column_info[/kbd]." msgstr "留空则不使用列信息和MIME类型。推荐: [kbd]pma__column_info[/kbd]" -#: libraries/config/messages.inc.php:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "列信息表" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 #, fuzzy #| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." msgstr "压缩连接到 MySQL 服务器" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "压缩连接" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 #, 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:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "连接方式" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "控制用户的密码" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 #, fuzzy #| msgid "" #| "A special MySQL user configured with limited permissions, more " @@ -6936,11 +6950,11 @@ msgstr "" "一个特殊的被限制权限的 MySQL 用户,参见 [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki (外链,英文)[/a]" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "控制用户" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 #, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " @@ -6950,11 +6964,11 @@ msgid "" "already defined host." msgstr "一个会变的主机被设置在了设置文件中,你可以留空以使用已经定义了的主机" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" 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 " @@ -6965,17 +6979,17 @@ msgid "" "if the controlhost equals host." msgstr "一个会变的主机被设置在了设置文件中,你可以留空以使用已经定义了的主机" -#: libraries/config/messages.inc.php:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "控制端口" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 #, fuzzy #| msgid "Hide databases matching regular expression (PCRE)" msgid "Hide databases matching regular expression (PCRE)." msgstr "该正则表达式 (PCRE,Perl 兼容) 所匹配的数据库将被隐藏" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6984,15 +6998,15 @@ msgstr "" "统 (外链,英文)[/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外" "链,英文)[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "禁止使用 INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "隐藏数据库" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma__history" @@ -7002,25 +7016,25 @@ msgid "" "kbd]." msgstr "不使用 SQL 查询历史功能请留空,推荐: [kbd]pma__history[/kbd]" -#: libraries/config/messages.inc.php:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL 查询历史表" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 #, fuzzy #| msgid "Hostname where MySQL server is running" msgid "Hostname where MySQL server is running." msgstr "MySQL 服务器的主机名" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "服务器主机名" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "退出地址" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 #, fuzzy #| msgid "" #| "Limits number of table preferences which are stored in database, the " @@ -7030,17 +7044,17 @@ msgid "" "records are automatically removed." msgstr "限制保存在数据库中的表设置数量,旧设置将被自动删除" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "最多保存的表设置数量" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "查看从服务器状态" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7050,13 +7064,13 @@ msgid "" "pma__savedsearches[/kbd]." msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma__pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Textarea columns" msgid "Central columns 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__table_coords[/" @@ -7066,17 +7080,17 @@ msgid "" "pma__central_columns[/kbd]." msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma__table_coords[/kbd]" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 #, fuzzy #| msgid "Try to connect without password" msgid "Try to connect without password." msgstr "尝试用空密码连接" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "用空密码连接" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -7085,21 +7099,21 @@ msgstr "" "可以使用 MySQL 通配符 (% 和 _),若表示它们本身,请转义,例:用 [kbd]'my" "\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。" -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "仅显示列出的数据库" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 #, fuzzy #| msgid "Leave empty if not using config auth" msgid "Leave empty if not using config auth." msgstr "如果不使用 config 认证方式,请留空" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "config 认证方式的密码" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/" @@ -7108,11 +7122,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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF 大纲: 数据表页" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 #, fuzzy #| msgid "" #| "Database used for relations, bookmarks, and PDF features. See [a@http://" @@ -7126,22 +7140,22 @@ msgstr "" "关系、书签、PDF 功能所用的数据库。参见 [a@http://wiki.phpmyadmin.net/pma/" "pmadb]pmadb (外链,英文)[/a]。不使用请留空。推荐: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "数据库名" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 #, 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:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "服务器端口" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " @@ -7151,11 +7165,11 @@ msgid "" "suggested: [kbd]pma__recent[/kbd]." msgstr "不需要 \"持久\" 最近使用的表请留空,推荐: [kbd]pma__recent[/kbd]" -#: libraries/config/messages.inc.php:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" 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, " @@ -7165,13 +7179,13 @@ msgid "" "suggested: [kbd]pma__favorite[/kbd]." msgstr "不需要 \"持久\" 最近使用的表请留空,推荐: [kbd]pma__recent[/kbd]" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "表收藏夹" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -7183,11 +7197,11 @@ msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/relation]关系链接 (外链,英文)[/a]功" "能请留空,推荐: [kbd]pma__relation[/kbd]" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "关系表" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 #, fuzzy #| msgid "" #| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " @@ -7199,35 +7213,35 @@ msgstr "" "参见[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]认证方式 (外链,英文)" "[/a]中的例子" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Signon 会话名" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "登录地址" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 #, 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:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "服务器套接字 (socket)" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 #, 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:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "使用 SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" @@ -7237,13 +7251,13 @@ msgid "" "kbd]." msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma__table_coords[/kbd]" -#: libraries/config/messages.inc.php:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF 大纲: 数据表并发" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 #, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " @@ -7253,11 +7267,11 @@ msgid "" "suggested: [kbd]pma__table_info[/kbd]." msgstr "描述显示字段的表,不使用请留空,推荐: [kbd]pma__table_info[/kbd]" -#: libraries/config/messages.inc.php:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "显示字段表" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 #, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables'UI preferences across sessions, " @@ -7267,49 +7281,49 @@ msgid "" "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "不需要 \"持久\" 表界面设置请留空,推荐: [kbd]pma__table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "界面设置表" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "添加 DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "添加 DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "添加 DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "定义自动创建新版的命令列表。" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "要追踪的命令" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -7319,21 +7333,21 @@ msgid "" "[/kbd]." msgstr "不使用 SQL 查询追踪功能请留空,推荐: [kbd]pma__tracking[/kbd]" -#: libraries/config/messages.inc.php:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL 查询追踪表" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "设置追踪系统是否自动为数据表和视图创建版本。" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "自动创建版本" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7343,33 +7357,33 @@ msgid "" "pma__userconfig[/kbd]." msgstr "不在数据库中保存用户偏好请留空,推荐: [kbd]pma__userconfig[/kbd]" -#: libraries/config/messages.inc.php:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "用户偏好表" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "用户表" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "用户组表" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -7379,35 +7393,35 @@ msgid "" "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "不在数据库中保存用户偏好请留空,推荐: [kbd]pma__userconfig[/kbd]" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "config 认证方式的用户名" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "一个好记的名字。留空将显示主机名。" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "服务器名称" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 #, 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:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "允许显示所有行" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 #, fuzzy #| msgid "" #| "Please note that enabling this has no effect with [kbd]config[/kbd] " @@ -7422,26 +7436,26 @@ msgstr "" "注意:该选项不影响 [kbd]config[/kbd] 认证方式,因为密码是保存在配置文件中,该" "选项也不限制直接执行可实现相同功能的命令" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "显示修改密码" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "显示创建数据库表单" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 #, 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:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "显示创建时间戳" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last update timestamp for all tables" @@ -7449,11 +7463,11 @@ msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "显示或者隐藏在所有表格中列显示最后更新时间戳" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "显示最后更新时间戳" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 #, fuzzy #| msgid "" #| "Show or hide a column displaying the Last check timestamp for all tables" @@ -7461,11 +7475,11 @@ msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "显示或者隐藏所有表格中,列显示最后检查时间戳" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "查看最后检查时间戳" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 #, fuzzy #| msgid "" #| "Defines whether or not type fields should be initially displayed in edit/" @@ -7475,31 +7489,31 @@ msgid "" "insert mode." msgstr "定义在编辑/插入模式中是否显示字段类型一列" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "显示字段类型" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 #, 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:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "显示函数列" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 #, fuzzy #| msgid "Whether to show hint or not" msgid "Whether to show hint or not." msgstr "是否显示提示" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "显示提示" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 #, fuzzy #| msgid "" #| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " @@ -7510,15 +7524,15 @@ msgid "" msgstr "" "显示 [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] 输出的链接" -#: libraries/config/messages.inc.php:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "显示 phpinfo() 链接" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "显示 MySQL 服务器详细信息" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 #, fuzzy #| msgid "" #| "Defines whether SQL queries generated by phpMyAdmin should be displayed" @@ -7526,11 +7540,11 @@ msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "定义是否显示 phpMyAdmin 生成的 SQL 查询" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "显示 SQL 查询" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 #, fuzzy #| msgid "" #| "Defines whether the query box should stay on-screen after its submission" @@ -7538,21 +7552,21 @@ msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "声明查询框是否在提交后依然显示在屏幕上" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "保留查询框" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 #, 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:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "显示统计" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 #, fuzzy #| msgid "" #| "Mark used tables and make it possible to show databases with locked tables" @@ -7560,19 +7574,19 @@ msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "将已锁定的数据表在数据库中显示为使用中" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "跳过锁定的表" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "若检测到 Suhosin 将在首页中显示警告。" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin 警告" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7583,13 +7597,13 @@ msgid "" "`LoginCookieValidity`." msgstr "禁止在列名包含 MySQL 保留字时在数据库结构页中显示默认警告" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "登录 cookie 有效期" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 #, fuzzy #| msgid "" #| "Textarea size (columns) in edit mode, this value will be emphasized for " @@ -7601,11 +7615,11 @@ msgstr "" "编辑模式的文本框大小 (列数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 " "(*1.25)" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "文本框列" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 #, fuzzy #| msgid "" #| "Textarea size (rows) in edit mode, this value will be emphasized for SQL " @@ -7617,39 +7631,39 @@ msgstr "" "编辑模式的文本框大小 (行数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 " "(*1.25)" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "文本框行" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 #, 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:784 +#: libraries/config/messages.inc.php:786 #, 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:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "默认标题" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 #, 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:788 +#: libraries/config/messages.inc.php:790 #, 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:790 +#: libraries/config/messages.inc.php:792 #, fuzzy #| msgid "" #| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following " @@ -7666,52 +7680,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "可信代理IP列表" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "服务器上用来存放导入文件的文件夹。" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "上传文件夹" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "允许搜索整个数据库。" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "使用数据库搜索" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "禁用时,用户不能设置下列选项,右侧的复选框被忽略。" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "启用设置中的开发标签" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "检查更新" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "允许在 phpMyAdmin 主页面中检查最新版本。" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7719,11 +7733,11 @@ msgid "" "the internet. The format is: \"hostname:portnumber\"." msgstr "" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "代理URL" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7732,19 +7746,19 @@ msgstr "" "连接代理服务器时使用的用户名。如果提供用户名,将使用基本认证方式连接。目前还" "不支持其他认证方式。" -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "代理用户名" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "代理密码" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 #, fuzzy #| msgid "" #| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " @@ -7756,53 +7770,53 @@ msgstr "" "允许在导入和导出时使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP " "(外链,英文)[/a] 压缩" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "reCaptcha的公共密匙" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "reCaptcha私有密匙" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "发送错误报告" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy #| msgid "Executed queries" msgid "Enter executes queries in console" msgstr "已执行的查询" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 #, fuzzy #| msgid "Server configuration" msgid "Enable Zero Configuration mode" @@ -7824,46 +7838,46 @@ msgstr "HTTP 认证" msgid "Signon authentication" msgstr "Signon 认证" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "OpenOffice 表格" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "快速" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "自定义" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "数据库导出选项" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "微软 Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenOffice 文档" @@ -8093,20 +8107,20 @@ msgstr "无法计算未缓存结果集的数目" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "无密码" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "密码:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "重新输入:" @@ -8241,8 +8255,8 @@ msgstr ",@TABLE@ 将变成数据表名" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。" @@ -8773,8 +8787,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" #: libraries/engines/pbxt.lib.php:138 @@ -9252,7 +9266,7 @@ msgstr "退出" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 文档" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 #, fuzzy #| msgid "Reload navigation frame" msgid "Reload navigation panel" @@ -9937,8 +9951,8 @@ msgstr "欢迎使用 %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。" @@ -10174,7 +10188,7 @@ msgstr "首行保存字段名" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 #, fuzzy #| msgid "Host" msgid "Host:" @@ -11212,7 +11226,7 @@ msgstr "" "添加此行到 [mysqld] 一节中:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 #, fuzzy #| msgid "User name" msgid "User name:" @@ -11220,16 +11234,16 @@ msgstr "用户名" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "用户名" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "密码" @@ -11259,10 +11273,10 @@ msgstr "服务器ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "主机" @@ -11274,47 +11288,47 @@ msgid "" msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "任意主机" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "本地" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "此主机" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "任意用户" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 #, fuzzy #| msgid "Use text field" msgid "Use text field:" msgstr "使用文本域" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "使用主机表" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "使用主机表时,此处的数据会被主机表中的数据所替换。" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "重新输入" @@ -12080,7 +12094,7 @@ msgstr "无" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "" @@ -12147,14 +12161,14 @@ msgstr "限制该用户的并发连接数。" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "按表指定权限" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 #, fuzzy #| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." @@ -12165,7 +12179,7 @@ msgid "Administration" msgstr "管理" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "全局权限" @@ -12176,7 +12190,7 @@ msgid "Global" msgstr "全局" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "按数据库指定权限" @@ -12193,266 +12207,266 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允许添加用户和权限,而不允许重新载入权限表。" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "登录信息" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "使用文本域" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "保持原密码" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密码已修改。" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "您已撤销 %s 的权限。" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "添加用户" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "用户数据库" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "创建与用户同名的数据库并授予所有权限。" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限。" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "授予数据库“%s”的所有权限。" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "用户可以访问“%s”" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "用户已添加。" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "用户" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "授权" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "未找到用户。" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "任意" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "全局" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "按数据库指定" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "通配符" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 #, fuzzy #| msgid "database-specific" msgid "table-specific" msgstr "按数据库指定" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "编辑权限" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "撤销" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 #, fuzzy #| msgid "Edit server" msgid "Edit user group" msgstr "编辑服务器" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… 保留旧用户。" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… 从用户表中删除旧用户。" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… 撤销旧用户的所有权限,然后删除旧用户。" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… 从用户表中删除旧用户,然后重新载入权限。" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "修改登录信息/复制用户" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "创建具有相同权限的新用户然后 …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "按字段指定权限" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 #, fuzzy #| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" msgstr "在下列数据库添加权限" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "要使用通配符 _ 和 % 本身,应使用 \\ 转义。" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 #, fuzzy #| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" msgstr "在下列数据表添加权限" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "删除选中的用户" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "撤销用户所有权限,然后删除用户。" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "删除与用户同名的数据库。" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "没有选择要删除的用户!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "重新载入权限" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "已成功删除选中的用户。" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的权限。" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "正在删除 %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "用户 %s 己存在!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "%s 的权限" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "新建" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 #, fuzzy #| msgid "Edit Privileges" msgid "Edit Privileges:" msgstr "编辑权限" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "用户概况" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" -"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" -"s。" +"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" +"限%s。" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "您已添加了一个新用户。" @@ -14259,21 +14273,21 @@ msgstr "索引缓存大小" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "索引类型:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "用户:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "注释:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 #, fuzzy #| msgid "Drag to reorder." msgid "Drag to reorder" @@ -15285,8 +15299,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "当前空闲查询缓存内存为总查询缓存大小的 %s%%。此值应高于 80%%" #: libraries/advisory_rules.txt:181 @@ -15417,8 +15431,8 @@ msgstr "根据系统内存,考虑增加 {sort_buffer_siz}e 和/或 {read_rnd_b #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "%s%% 的排序引发临时表创建,该值应低于 10%%。" #: libraries/advisory_rules.txt:218 @@ -17473,8 +17487,8 @@ msgstr "concurrent_insert 被设为 0" #~ "Note that not every result table can be put to the chart. See
FAQ 6.29" #~ msgstr "" -#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" +#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" #~ msgid "Add a New User" #~ msgstr "添加新用户" diff --git a/po/zh_TW.po b/po/zh_TW.po index 0d0ab55a90..0bc3c0f5b0 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,15 +3,15 @@ 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-03-18 14:15-0400\n" +"POT-Creation-Date: 2015-03-22 07:35-0400\n" "PO-Revision-Date: 2014-10-03 21:14+0200\n" "Last-Translator: Peter Dave Hello \n" "Language-Team: Traditional Chinese \n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.10-dev\n" @@ -66,7 +66,7 @@ msgstr "資料表備註:" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:969 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:992 #: libraries/tbl_columns_definition_form.lib.php:611 -#: libraries/tbl_indexes.lib.php:376 libraries/tbl_printview.lib.php:476 +#: libraries/tbl_indexes.lib.php:377 libraries/tbl_printview.lib.php:476 #: libraries/tbl_relation.lib.php:231 libraries/tbl_relation.lib.php:342 #: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:607 #: libraries/tbl_relation.lib.php:617 libraries/tracking.lib.php:877 @@ -90,7 +90,7 @@ msgstr "欄位" #: libraries/rte/rte_routines.lib.php:961 #: libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_routines.lib.php:1627 -#: libraries/server_privileges.lib.php:2245 libraries/structure.lib.php:847 +#: libraries/server_privileges.lib.php:2269 libraries/structure.lib.php:847 #: libraries/structure.lib.php:1295 #: libraries/tbl_columns_definition_form.lib.php:296 #: libraries/tbl_printview.lib.php:477 libraries/tracking.lib.php:878 @@ -146,8 +146,8 @@ msgid "Links to" msgstr "連結到" #: db_datadict.php:110 db_printview.php:54 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:153 -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:186 #: libraries/plugins/export/ExportHtmlword.class.php:393 #: libraries/plugins/export/ExportLatex.class.php:515 #: libraries/plugins/export/ExportOdt.class.php:482 @@ -176,13 +176,13 @@ msgstr "主鍵" #: libraries/plugins/export/ExportOdt.class.php:755 #: libraries/plugins/export/ExportTexytext.class.php:567 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1042 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2606 -#: libraries/server_privileges.lib.php:2626 -#: libraries/server_privileges.lib.php:2952 -#: libraries/server_privileges.lib.php:2958 -#: libraries/server_privileges.lib.php:3298 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2630 +#: libraries/server_privileges.lib.php:2650 +#: libraries/server_privileges.lib.php:2976 +#: libraries/server_privileges.lib.php:2982 +#: libraries/server_privileges.lib.php:3322 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/tbl_printview.lib.php:117 libraries/tracking.lib.php:924 #: libraries/tracking.lib.php:1001 libraries/tracking.lib.php:1006 #: libraries/user_preferences.lib.php:295 prefs_manage.php:138 @@ -205,13 +205,13 @@ msgstr "否" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1043 #: libraries/server_databases.lib.php:465 #: libraries/server_databases.lib.php:475 -#: libraries/server_privileges.lib.php:2422 -#: libraries/server_privileges.lib.php:2603 -#: libraries/server_privileges.lib.php:2624 -#: libraries/server_privileges.lib.php:2951 -#: libraries/server_privileges.lib.php:2956 -#: libraries/server_privileges.lib.php:3295 -#: libraries/server_privileges.lib.php:3320 libraries/structure.lib.php:1386 +#: libraries/server_privileges.lib.php:2446 +#: libraries/server_privileges.lib.php:2627 +#: libraries/server_privileges.lib.php:2648 +#: libraries/server_privileges.lib.php:2975 +#: libraries/server_privileges.lib.php:2980 +#: libraries/server_privileges.lib.php:3319 +#: libraries/server_privileges.lib.php:3344 libraries/structure.lib.php:1386 #: libraries/structure.lib.php:2795 libraries/tbl_printview.lib.php:118 #: libraries/tracking.lib.php:924 libraries/tracking.lib.php:999 #: libraries/tracking.lib.php:1004 libraries/user_preferences.lib.php:293 @@ -260,14 +260,14 @@ msgid "" msgstr "phpMyAdmin 設定儲存空間己停用。 %s了解原因%s。" #: db_printview.php:48 db_tracking.php:125 db_tracking.php:287 -#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:789 +#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:791 #: libraries/plugins/export/ExportXml.class.php:498 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:331 #: libraries/server_privileges.lib.php:1191 -#: libraries/server_privileges.lib.php:2782 -#: libraries/server_privileges.lib.php:3017 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4118 libraries/structure.lib.php:825 +#: libraries/server_privileges.lib.php:2806 +#: libraries/server_privileges.lib.php:3041 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4142 libraries/structure.lib.php:825 #: libraries/tbl_relation.lib.php:325 libraries/tbl_relation.lib.php:591 msgid "Table" msgstr "資料表" @@ -280,7 +280,7 @@ msgid "Rows" msgstr "資料列數" #: db_printview.php:52 libraries/structure.lib.php:858 -#: libraries/tbl_indexes.lib.php:377 +#: libraries/tbl_indexes.lib.php:378 msgid "Size" msgstr "大小" @@ -372,9 +372,9 @@ msgstr "狀態" #: libraries/central_columns.lib.php:686 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: libraries/server_databases.lib.php:399 -#: libraries/server_privileges.lib.php:2248 -#: libraries/server_privileges.lib.php:3038 -#: libraries/server_privileges.lib.php:3214 +#: libraries/server_privileges.lib.php:2272 +#: libraries/server_privileges.lib.php:3062 +#: libraries/server_privileges.lib.php:3238 #: libraries/server_user_groups.lib.php:82 #: libraries/server_variables.lib.php:189 libraries/structure.lib.php:833 #: libraries/structure.lib.php:1312 libraries/tracking.lib.php:279 @@ -567,15 +567,15 @@ msgstr "新增幾何形" #: libraries/rte/rte_routines.lib.php:1721 #: libraries/rte/rte_triggers.lib.php:396 libraries/server_bin_log.lib.php:61 #: libraries/server_privileges.lib.php:705 -#: libraries/server_privileges.lib.php:1986 -#: libraries/server_privileges.lib.php:2748 -#: libraries/server_privileges.lib.php:3400 -#: libraries/server_privileges.lib.php:4357 +#: libraries/server_privileges.lib.php:2010 +#: libraries/server_privileges.lib.php:2772 +#: libraries/server_privileges.lib.php:3424 +#: libraries/server_privileges.lib.php:4381 #: libraries/server_user_groups.lib.php:285 #: libraries/sql_query_form.lib.php:339 libraries/sql_query_form.lib.php:398 #: libraries/sql_query_form.lib.php:466 libraries/structure.lib.php:1717 #: libraries/tbl_columns_definition_form.lib.php:194 -#: libraries/tbl_indexes.lib.php:472 libraries/tracking.lib.php:532 +#: libraries/tbl_indexes.lib.php:473 libraries/tracking.lib.php:532 #: libraries/tracking.lib.php:652 prefs_manage.php:275 prefs_manage.php:353 #: view_create.php:277 view_operations.php:106 msgid "Go" @@ -607,8 +607,8 @@ msgstr "參數不完整" #: import.php:163 #, php-format msgid "" -"You probably tried to upload a file that is too large. Please refer to %" -"sdocumentation%s for a workaround for this limit." +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." msgstr "您上傳的檔案過大,請參考 %s說明文件%s 了解如何解決此問題。" #: import.php:343 import.php:648 @@ -689,7 +689,7 @@ msgstr "" #: import_status.php:97 js/messages.php:332 libraries/Util.class.php:736 #: libraries/export.lib.php:460 #: libraries/plugins/schema/Export_Relation_Schema.class.php:294 -#: user_password.php:197 +#: user_password.php:208 msgid "Back" msgstr "返回" @@ -712,7 +712,7 @@ msgid "General Settings" msgstr "一般設定" #: index.php:186 libraries/display_change_password.lib.php:50 -#: libraries/display_change_password.lib.php:53 user_password.php:191 +#: libraries/display_change_password.lib.php:53 user_password.php:202 msgid "Change password" msgstr "修改密碼" @@ -787,7 +787,7 @@ msgstr "版本資訊:" #: index.php:388 libraries/Util.class.php:429 libraries/Util.class.php:491 #: libraries/config/FormDisplay.tpl.php:148 #: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:117 -#: libraries/navigation/NavigationHeader.class.php:187 +#: libraries/navigation/NavigationHeader.class.php:182 #: libraries/server_variables.lib.php:160 msgid "Documentation" msgstr "說明文件" @@ -1051,7 +1051,7 @@ msgstr "新增索引" msgid "Edit Index" msgstr "編輯索引" -#: js/messages.php:67 libraries/tbl_indexes.lib.php:461 +#: js/messages.php:67 libraries/tbl_indexes.lib.php:462 #, php-format msgid "Add %s column(s) to index" msgstr "增加 %s 個欄位至索引" @@ -1078,7 +1078,7 @@ msgstr "至少要增加一個欄位。" #: js/messages.php:77 libraries/insert_edit.lib.php:1541 #: libraries/tbl_columns_definition_form.lib.php:159 -#: libraries/tbl_indexes.lib.php:471 libraries/tbl_relation.lib.php:651 +#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:651 msgid "Preview SQL" msgstr "預覽 SQL" @@ -1107,12 +1107,12 @@ msgstr "您尚未填寫主機名稱!" msgid "The user name is empty!" msgstr "您尚未填寫使用者帳號!" -#: js/messages.php:91 libraries/server_privileges.lib.php:1774 +#: js/messages.php:91 libraries/server_privileges.lib.php:1780 #: user_password.php:110 msgid "The password is empty!" msgstr "您尚未填寫密碼!" -#: js/messages.php:92 libraries/server_privileges.lib.php:1772 +#: js/messages.php:92 libraries/server_privileges.lib.php:1778 #: user_password.php:113 msgid "The passwords aren't the same!" msgstr "兩次輸入的密碼不一致!" @@ -1311,7 +1311,7 @@ msgstr "請至少增加一個變數到資料序列!" #: libraries/config.values.php:69 libraries/db_designer.lib.php:981 #: libraries/display_export.lib.php:587 #: libraries/plugins/export/ExportSql.class.php:1899 -#: libraries/server_privileges.lib.php:2919 +#: libraries/server_privileges.lib.php:2943 #: libraries/server_status_monitor.lib.php:236 #: libraries/server_status_processes.lib.php:301 #: libraries/tbl_columns_definition_form.lib.php:762 @@ -1592,7 +1592,7 @@ msgstr "無法使用匯入的設定檔建立圖表,將重設為預設的設定 #: js/messages.php:232 libraries/Menu.class.php:344 #: libraries/Menu.class.php:447 libraries/Menu.class.php:575 #: libraries/Util.class.php:4139 libraries/Util.class.php:4154 -#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:228 +#: libraries/Util.class.php:4171 libraries/config/messages.inc.php:230 #: libraries/display_import.lib.php:105 #: libraries/server_status_monitor.lib.php:318 prefs_manage.php:236 #: setup/frames/menu.inc.php:26 @@ -1803,7 +1803,7 @@ msgstr "顯示查詢框" #: libraries/Util.class.php:1190 libraries/Util.class.php:3424 #: libraries/Util.class.php:3425 libraries/central_columns.lib.php:850 #: libraries/central_columns.lib.php:1079 -#: libraries/config/messages.inc.php:768 +#: libraries/config/messages.inc.php:770 #: libraries/server_user_groups.lib.php:119 #: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179 msgid "Edit" @@ -2043,7 +2043,7 @@ msgstr "資料點內容" #: js/messages.php:384 js/messages.php:514 js/messages.php:530 #: libraries/Error_Handler.class.php:348 libraries/insert_edit.lib.php:2561 -#: libraries/tbl_indexes.lib.php:395 libraries/tbl_indexes.lib.php:432 +#: libraries/tbl_indexes.lib.php:396 libraries/tbl_indexes.lib.php:433 msgid "Ignore" msgstr "略過" @@ -2212,7 +2212,7 @@ msgstr "點選下拉箭頭
以切換欄位的顯示程度。" #: js/messages.php:444 libraries/DisplayResults.class.php:926 #: libraries/browse_foreigners.lib.php:253 #: libraries/browse_foreigners.lib.php:306 -#: libraries/server_privileges.lib.php:3465 +#: libraries/server_privileges.lib.php:3489 msgid "Show all" msgstr "全部顯示" @@ -2306,7 +2306,7 @@ msgstr "隱藏控制面板" msgid "Show hidden navigation tree items." msgstr "顯示隱藏的導覽樹項目。" -#: js/messages.php:485 libraries/config/messages.inc.php:436 +#: js/messages.php:485 libraries/config/messages.inc.php:438 #: libraries/navigation/NavigationTree.class.php:1335 msgid "Link with main panel" msgstr "連結主面板" @@ -2804,16 +2804,16 @@ msgid "Delete" msgstr "刪除" #: libraries/Console.class.php:99 libraries/Console.class.php:185 -#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:783 +#: libraries/Menu.class.php:214 libraries/config/messages.inc.php:785 #: libraries/plugins/export/ExportHtmlword.class.php:149 #: libraries/plugins/export/ExportOdt.class.php:193 #: libraries/plugins/export/ExportTexytext.class.php:133 #: libraries/server_databases.lib.php:303 #: libraries/server_privileges.lib.php:1188 -#: libraries/server_privileges.lib.php:2766 -#: libraries/server_privileges.lib.php:3016 -#: libraries/server_privileges.lib.php:3028 -#: libraries/server_privileges.lib.php:4104 +#: libraries/server_privileges.lib.php:2790 +#: libraries/server_privileges.lib.php:3040 +#: libraries/server_privileges.lib.php:3052 +#: libraries/server_privileges.lib.php:4128 #: libraries/server_status_processes.lib.php:81 #: libraries/tbl_relation.lib.php:302 libraries/tbl_relation.lib.php:539 msgid "Database" @@ -2930,7 +2930,7 @@ msgid "During current session" msgstr "於目前連線階段" #: libraries/Console.class.php:269 libraries/Util.class.php:1232 -#: libraries/config/messages.inc.php:770 +#: libraries/config/messages.inc.php:772 #: libraries/server_status_processes.lib.php:249 #: libraries/server_status_variables.lib.php:42 msgid "Refresh" @@ -3303,8 +3303,8 @@ msgstr "您的 SQL 語法已順利執行。" #: libraries/DisplayResults.class.php:4547 libraries/structure.lib.php:692 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "這個檢視表至少需有此數量的資料列,請參考%sdocumentation%s。" #: libraries/DisplayResults.class.php:4560 @@ -3339,6 +3339,7 @@ msgstr "已選擇項目:" #: libraries/DisplayResults.class.php:4700 libraries/Util.class.php:4576 #: libraries/Util.class.php:4577 libraries/server_privileges.lib.php:1196 #: libraries/server_privileges.lib.php:1197 +#: libraries/server_privileges.lib.php:1409 #: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:299 #: libraries/structure.lib.php:300 msgid "Check All" @@ -3354,12 +3355,12 @@ msgstr "修改" #: libraries/Menu.class.php:438 libraries/Menu.class.php:571 #: libraries/Util.class.php:3426 libraries/Util.class.php:3427 #: libraries/Util.class.php:4138 libraries/Util.class.php:4153 -#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:222 +#: libraries/Util.class.php:4170 libraries/config/messages.inc.php:224 #: libraries/display_export.lib.php:167 -#: libraries/server_privileges.lib.php:2089 -#: libraries/server_privileges.lib.php:2166 -#: libraries/server_privileges.lib.php:2508 -#: libraries/server_privileges.lib.php:3228 +#: libraries/server_privileges.lib.php:2113 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2532 +#: libraries/server_privileges.lib.php:3252 #: libraries/server_status_monitor.lib.php:322 libraries/structure.lib.php:318 #: prefs_manage.php:301 setup/frames/menu.inc.php:27 msgid "Export" @@ -3546,7 +3547,7 @@ msgid "" msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除。" #: libraries/Menu.class.php:197 libraries/ServerStatusData.class.php:369 -#: libraries/config/messages.inc.php:787 +#: libraries/config/messages.inc.php:789 msgid "Server" msgstr "伺服器" @@ -3561,11 +3562,11 @@ msgstr "檢視表" #: libraries/Util.class.php:3193 libraries/Util.class.php:3200 #: libraries/Util.class.php:3419 libraries/Util.class.php:4149 #: libraries/Util.class.php:4166 libraries/central_columns.lib.php:727 -#: libraries/config/setup.forms.php:308 libraries/config/setup.forms.php:348 -#: libraries/config/setup.forms.php:374 -#: libraries/config/user_preferences.forms.php:207 -#: libraries/config/user_preferences.forms.php:247 -#: libraries/config/user_preferences.forms.php:273 +#: libraries/config/setup.forms.php:309 libraries/config/setup.forms.php:349 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:208 +#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:274 #: libraries/db_designer.lib.php:482 libraries/import.lib.php:1293 #: libraries/navigation/Nodes/Node_Column.class.php:42 #: libraries/navigation/Nodes/Node_Database.class.php:49 @@ -3581,7 +3582,7 @@ msgstr "結構" #: libraries/Menu.class.php:541 libraries/Util.class.php:3194 #: libraries/Util.class.php:3201 libraries/Util.class.php:4135 #: libraries/Util.class.php:4150 libraries/Util.class.php:4167 -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:293 #: libraries/navigation/Nodes/Node_Table.class.php:48 #: libraries/navigation/Nodes/Node_Table.class.php:285 msgid "SQL" @@ -3607,9 +3608,9 @@ msgstr "新增" #: libraries/Menu.class.php:354 libraries/Menu.class.php:459 #: libraries/Util.class.php:4156 libraries/Util.class.php:4172 -#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2246 -#: libraries/server_privileges.lib.php:3030 -#: libraries/server_privileges.lib.php:3993 +#: libraries/server_common.lib.php:51 libraries/server_privileges.lib.php:2270 +#: libraries/server_privileges.lib.php:3054 +#: libraries/server_privileges.lib.php:4017 msgid "Privileges" msgstr "權限" @@ -3669,9 +3670,9 @@ msgid "Central columns" msgstr "中央欄位" #: libraries/Menu.class.php:537 libraries/Util.class.php:4134 -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:238 #: libraries/navigation/NavigationTree.class.php:1185 -#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104 +#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4128 msgid "Databases" msgstr "資料庫" @@ -3776,7 +3777,7 @@ msgid "Recent" msgstr "最近使用" #: libraries/RecentFavoriteTable.class.php:254 -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:487 msgid "Favorite tables" msgstr "我的最愛的資料表" @@ -3847,7 +3848,7 @@ msgstr "排序" #: libraries/ServerStatusData.class.php:201 #: libraries/build_html_for_db.lib.php:28 -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:244 #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:120 @@ -4203,16 +4204,16 @@ msgstr "" #: libraries/Types.class.php:332 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to -" -"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "浮點數,範圍為 -3.402823466E+38 至 -1.175494351E-38、0 及 1.175494351E-38 至 " "3.402823466E+38" #: libraries/Types.class.php:334 msgid "" -"A double-precision floating-point number, allowable values are -" -"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "倍準浮點數,範圍為 -1.7976931348623157E+308 至 -2.2250738585072014E-308、0 " @@ -4486,7 +4487,7 @@ msgstr "上限: %s %s" msgid "MySQL said: " msgstr "MySQL 回應: " -#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:769 +#: libraries/Util.class.php:1164 libraries/config/messages.inc.php:771 msgid "Explain SQL" msgstr "SQL 語句分析" @@ -4498,7 +4499,7 @@ msgstr "略過 SQL 語句分析" msgid "Without PHP Code" msgstr "關閉 PHP 程式碼" -#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:771 +#: libraries/Util.class.php:1206 libraries/config/messages.inc.php:773 msgid "Create PHP Code" msgstr "產生 PHP 程式碼" @@ -4611,13 +4612,13 @@ msgstr "說明" msgid "Use this value" msgstr "使用此值" -#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:320 -#: libraries/config/setup.forms.php:356 libraries/config/setup.forms.php:379 -#: libraries/config/setup.forms.php:384 -#: libraries/config/user_preferences.forms.php:219 -#: libraries/config/user_preferences.forms.php:255 -#: libraries/config/user_preferences.forms.php:278 -#: libraries/config/user_preferences.forms.php:283 +#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:321 +#: libraries/config/setup.forms.php:357 libraries/config/setup.forms.php:380 +#: libraries/config/setup.forms.php:385 +#: libraries/config/user_preferences.forms.php:220 +#: libraries/config/user_preferences.forms.php:256 +#: libraries/config/user_preferences.forms.php:279 +#: libraries/config/user_preferences.forms.php:284 #: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2333 #: libraries/tbl_printview.lib.php:308 msgid "Data" @@ -5008,7 +5009,7 @@ msgid "Set value: %s" msgstr "設定值: %s" #: libraries/config/FormDisplay.tpl.php:315 -#: libraries/config/messages.inc.php:548 +#: libraries/config/messages.inc.php:550 msgid "Restore default value" msgstr "還原預設值" @@ -5399,71 +5400,83 @@ msgstr "在進入資料表頁面時預設顯示的頁籤。" msgid "Default table tab" msgstr "預設資料表頁籤" +#: libraries/config/messages.inc.php:94 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Autocomplete of the table and column names in the SQL queries." +msgstr "在資料表名稱及欄位名稱使用反引號(`)" + #: libraries/config/messages.inc.php:95 +#, fuzzy +#| msgid "Enclose table and column names with backquotes" +msgid "Enable autocomplete for table and column names" +msgstr "在資料表名稱及欄位名稱使用反引號(`)" + +#: libraries/config/messages.inc.php:97 msgid "Whether the table structure actions should be hidden." msgstr "是否隱藏資料表結構操作項目。" -#: libraries/config/messages.inc.php:96 +#: libraries/config/messages.inc.php:98 msgid "Hide table structure actions" msgstr "隱藏資料表結構動作" -#: libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:100 msgid "Show server listing as a list instead of a drop down." msgstr "使用清單替代下拉式選單的方式顯示伺服器清單。" -#: libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:101 msgid "Display servers as a list" msgstr "使用清單方式顯示伺服器" -#: libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:103 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "關閉多張資料表的操作列,如: 最佳化(Optimize)或修復(Repair)。" -#: libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:106 msgid "Disable multi table maintenance" msgstr "關閉多張資料表的操作列" -#: libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:108 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "設定 Script 允許執行的時間限制 (秒,[kbd]0[/kbd] 爲不設限)。" -#: libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:111 msgid "Maximum execution time" msgstr "執行時間限制" -#: libraries/config/messages.inc.php:111 libraries/display_export.lib.php:662 +#: libraries/config/messages.inc.php:113 libraries/display_export.lib.php:662 #, fuzzy, php-format #| msgid "Add %s statement" msgid "Use %s statement" msgstr "加入 %s 指令" -#: libraries/config/messages.inc.php:113 prefs_manage.php:316 +#: libraries/config/messages.inc.php:115 prefs_manage.php:316 msgid "Save as file" msgstr "另存新檔" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:116 libraries/config/messages.inc.php:341 msgid "Character set of the file" msgstr "檔案編碼" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:131 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:133 #: libraries/sql_query_form.lib.php:237 libraries/structure.lib.php:1817 #: libraries/tbl_printview.lib.php:183 msgid "Format" msgstr "格式" -#: libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:118 msgid "Compression" msgstr "壓縮" -#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:124 -#: libraries/config/messages.inc.php:132 libraries/config/messages.inc.php:136 -#: libraries/config/messages.inc.php:150 libraries/config/messages.inc.php:152 -#: libraries/config/messages.inc.php:195 libraries/config/messages.inc.php:198 -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:126 +#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:197 libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:202 #: libraries/plugins/export/ExportCsv.class.php:91 #: libraries/plugins/export/ExportExcel.class.php:68 #: libraries/plugins/export/ExportHtmlword.class.php:90 @@ -5473,60 +5486,60 @@ msgstr "壓縮" msgid "Put columns names in the first row" msgstr "將欄位名稱儲存至第一行" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:341 -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:353 #: libraries/plugins/import/ImportCsv.class.php:137 msgid "Columns enclosed with" msgstr "內容分隔符號" -#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:342 -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:354 #: libraries/plugins/import/ImportCsv.class.php:144 msgid "Columns escaped with" msgstr "內容跳脫符號" -#: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:133 libraries/config/messages.inc.php:142 -#: libraries/config/messages.inc.php:151 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:196 libraries/config/messages.inc.php:199 -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:135 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:198 libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:203 msgid "Replace NULL with" msgstr "將 NULL 取代爲" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:129 msgid "Remove CRLF characters within columns" msgstr "將欄位之間的換行符號(CRLF)移除" -#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:358 #: libraries/plugins/import/ImportCsv.class.php:122 msgid "Columns terminated with" msgstr "欄位內容換行使用字元為" -#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:342 #: libraries/plugins/import/ImportCsv.class.php:153 msgid "Lines terminated with" msgstr "換行符號" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:127 msgid "Excel edition" msgstr "Excel 版本" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:130 msgid "Database name template" msgstr "資料庫名稱樣板" -#: libraries/config/messages.inc.php:129 +#: libraries/config/messages.inc.php:131 msgid "Server name template" msgstr "伺服器名稱樣板" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:132 msgid "Table name template" msgstr "資料表名稱樣板" -#: libraries/config/messages.inc.php:134 libraries/config/messages.inc.php:148 -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:191 -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:199 #: libraries/plugins/export/ExportHtmlword.class.php:63 #: libraries/plugins/export/ExportLatex.class.php:97 #: libraries/plugins/export/ExportMediawiki.class.php:63 @@ -5535,137 +5548,137 @@ msgstr "資料表名稱樣板" msgid "Dump table" msgstr "匯出資料表" -#: libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:137 #: libraries/plugins/export/ExportLatex.class.php:89 msgid "Include table caption" msgstr "顯示資料表標題" -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:146 msgid "Table caption" msgstr "資料表標題" -#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:148 msgid "Continued table caption" msgstr "換頁時重複資料表標題" -#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:149 msgid "Label key" msgstr "標籤鍵值" -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:154 -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:189 #: libraries/plugins/export/ExportOdt.class.php:488 #: libraries/tbl_columns_definition_form.lib.php:334 msgid "MIME type" msgstr "MIME 類型" -#: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:156 -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:145 libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:192 msgid "Relations" msgstr "關聯" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:151 msgid "Export method" msgstr "匯出方式" -#: libraries/config/messages.inc.php:158 libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:160 libraries/config/messages.inc.php:162 msgid "Save on server" msgstr "儲存在伺服器上" -#: libraries/config/messages.inc.php:159 libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 libraries/config/messages.inc.php:164 #: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438 msgid "Overwrite existing file(s)" msgstr "覆蓋既有檔案" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:165 msgid "Remember file name template" msgstr "記錄樣板檔案名稱" -#: libraries/config/messages.inc.php:164 libraries/operations.lib.php:194 +#: libraries/config/messages.inc.php:166 libraries/operations.lib.php:194 #: libraries/operations.lib.php:644 libraries/operations.lib.php:987 msgid "Add AUTO_INCREMENT value" msgstr "加入自動遞增(AUTO_INCREMENT)數值" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:168 msgid "Enclose table and column names with backquotes" msgstr "在資料表名稱及欄位名稱使用反引號(`)" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:169 libraries/config/messages.inc.php:367 #: libraries/display_export.lib.php:299 msgid "SQL compatibility mode" msgstr "SQL 相容模式" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:171 #: libraries/plugins/export/ExportSql.class.php:300 msgid "CREATE TABLE options:" msgstr "CREATE TABLE 選項:" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:172 msgid "Creation/Update/Check dates" msgstr "建立/更新/檢查日期" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:173 msgid "Use delayed inserts" msgstr "使用延遲新增" -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:340 #: libraries/plugins/export/ExportSql.class.php:142 msgid "Disable foreign key checks" msgstr "關閉外鍵(Foreign Key)檢查" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:175 #: libraries/plugins/export/ExportSql.class.php:155 msgid "Export views as tables" msgstr "將視表匯出成資料表" -#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:176 -#: libraries/config/messages.inc.php:177 libraries/config/messages.inc.php:178 -#: libraries/config/messages.inc.php:180 libraries/config/messages.inc.php:182 -#: libraries/config/messages.inc.php:189 libraries/operations.lib.php:189 +#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:179 libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:182 libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:191 libraries/operations.lib.php:189 #: libraries/operations.lib.php:983 #, php-format msgid "Add %s" msgstr "加入 %s" -#: libraries/config/messages.inc.php:181 +#: libraries/config/messages.inc.php:183 msgid "Use hexadecimal for BINARY & BLOB" msgstr "於 BINARY 與 BLOB 欄位使用 16 進位(HEX)表示" -#: libraries/config/messages.inc.php:183 +#: libraries/config/messages.inc.php:185 msgid "Use ignore inserts" msgstr "使用忽略錯誤的新增(INSERT)" -#: libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 msgid "Syntax to use when inserting data" msgstr "在新增資料時使用的語法" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:188 #: libraries/plugins/export/ExportSql.class.php:419 msgid "Maximal length of created query" msgstr "建立查詢指令最大長度" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:194 msgid "Export type" msgstr "匯出類型" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:195 #: libraries/plugins/export/ExportSql.class.php:129 msgid "Enclose export in a transaction" msgstr "匯出資料使用交易(Transcation)的方式包裝" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:196 msgid "Export time in UTC" msgstr "匯出時間使用世界協調時間(UTC)" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:204 msgid "Force secured connection while using phpMyAdmin." msgstr "強制使用安全連線瀏覽 phpMyAdmin。" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:205 msgid "Force SSL connection" msgstr "強制 SSL 連線" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:207 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." @@ -5673,142 +5686,142 @@ msgstr "" "外鍵下拉選單中選項的排序順序,[kbd]content[/kbd] 爲關聯內容,[kbd]id[/kbd] 爲" "鍵值。" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:210 msgid "Foreign key dropdown order" msgstr "外鍵下拉選單順序" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:212 msgid "A dropdown will be used if fewer items are present." msgstr "下拉選單中選項個數的限制。" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:213 msgid "Foreign key limit" msgstr "外鍵數量限制" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:214 msgid "Browse mode" msgstr "瀏覽模式" -#: libraries/config/messages.inc.php:213 +#: libraries/config/messages.inc.php:215 msgid "Customize browse mode." msgstr "自訂瀏覽模式。" -#: libraries/config/messages.inc.php:215 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:235 libraries/config/messages.inc.php:246 -#: libraries/config/messages.inc.php:248 libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:217 libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:237 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:296 msgid "Customize default options." msgstr "自定預設選項。" -#: libraries/config/messages.inc.php:216 libraries/config/setup.forms.php:253 -#: libraries/config/setup.forms.php:331 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:230 +#: libraries/config/messages.inc.php:218 libraries/config/setup.forms.php:254 +#: libraries/config/setup.forms.php:332 +#: libraries/config/user_preferences.forms.php:155 +#: libraries/config/user_preferences.forms.php:231 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:220 msgid "Developer" msgstr "開發人員" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:221 msgid "Settings for phpMyAdmin developers." msgstr "phpMyAdmin 開發設定。" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:222 msgid "Edit mode" msgstr "編輯模式" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:223 msgid "Customize edit mode." msgstr "自訂編輯模式。" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:225 msgid "Export defaults" msgstr "匯出選項" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:226 msgid "Customize default export options." msgstr "自訂匯出選項的預設值。" -#: libraries/config/messages.inc.php:225 libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:227 libraries/config/messages.inc.php:288 #: setup/frames/menu.inc.php:22 msgid "Features" msgstr "功能" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:228 msgid "General" msgstr "一般" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:229 msgid "Set some commonly used options." msgstr "設定某些常用選項。" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:231 msgid "Import defaults" msgstr "匯入選項" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:232 msgid "Customize default common import options." msgstr "自訂常用匯入選項的預設值。" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:233 msgid "Import / export" msgstr "匯入 / 匯出" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:235 msgid "Set import and export directories and compression options." msgstr "設定匯入和匯出資料夾以及壓縮選項。" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:236 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:239 msgid "Databases display options." msgstr "資料庫顯示選項。" -#: libraries/config/messages.inc.php:238 setup/frames/menu.inc.php:24 +#: libraries/config/messages.inc.php:240 setup/frames/menu.inc.php:24 msgid "Navigation panel" msgstr "導覽面板" -#: libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:241 msgid "Customize appearance of the navigation panel." msgstr "自訂導覽面版外觀。" -#: libraries/config/messages.inc.php:240 libraries/select_server.lib.php:44 +#: libraries/config/messages.inc.php:242 libraries/select_server.lib.php:44 #: setup/frames/index.inc.php:144 msgid "Servers" msgstr "伺服器" -#: libraries/config/messages.inc.php:241 +#: libraries/config/messages.inc.php:243 msgid "Servers display options." msgstr "伺服器顯示選項。" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:245 msgid "Tables display options." msgstr "資料表顯示選項。" -#: libraries/config/messages.inc.php:244 setup/frames/menu.inc.php:25 +#: libraries/config/messages.inc.php:246 setup/frames/menu.inc.php:25 msgid "Main panel" msgstr "主面板" -#: libraries/config/messages.inc.php:245 +#: libraries/config/messages.inc.php:247 msgid "Microsoft Office" msgstr "微軟 Office" -#: libraries/config/messages.inc.php:249 +#: libraries/config/messages.inc.php:251 msgid "Other core settings" msgstr "其他核心設定" -#: libraries/config/messages.inc.php:251 +#: libraries/config/messages.inc.php:253 msgid "Settings that didn't fit anywhere else." msgstr "其他設定。" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:254 msgid "Page titles" msgstr "頁面標題" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:256 msgid "" "Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation" "[/doc] for magic strings that can be used to get special values." @@ -5816,56 +5829,56 @@ msgstr "" "設定瀏覽器標題列顯示的文字。請參考 [doc@cfg_TitleTable]說明文件[/doc] 中的變" "數字串會替換為特殊內容。" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:260 msgid "Query window" msgstr "查詢視窗" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:261 msgid "Customize query window options" msgstr "自訂查詢視窗選項" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:262 msgid "Security" msgstr "安全性" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:264 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" "請注意 phpMyAdmin 僅提供使用者介面及相關功能,並不會實際限制 MySQL 的執行。" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:267 msgid "Basic settings" msgstr "基本設定" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:268 msgid "Authentication" msgstr "認證" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:269 msgid "Authentication settings." msgstr "認證設定。" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:270 msgid "Server configuration" msgstr "伺服器設定" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:272 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "進階伺服器設定,若您不知道這些設定項目的用途,請不要修改。" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:275 msgid "Enter server connection parameters." msgstr "請輸入伺服器連線參數。" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:276 msgid "Configuration storage" msgstr "設定儲存空間" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:278 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " @@ -5874,132 +5887,132 @@ msgstr "" "請設定 phpMyAdmin 設定儲存空間以開啟其他進階功能,請參考 [doc@linked-tables]" "phpMyAdmin 設定儲存空間[/doc]。" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:282 msgid "Changes tracking" msgstr "修改追蹤" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:284 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "追蹤資料庫的修改。需要 phpMyAdmin 設定儲存空間。" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:287 msgid "Customize export options" msgstr "自訂匯出選項" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:289 msgid "Customize import defaults" msgstr "自訂匯入選項" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:290 msgid "Customize navigation panel" msgstr "自訂導覽面板" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:291 msgid "Customize main panel" msgstr "自訂主面板" -#: libraries/config/messages.inc.php:290 libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:292 libraries/config/messages.inc.php:297 #: setup/frames/menu.inc.php:23 msgid "SQL queries" msgstr "SQL 查詢" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:294 msgid "SQL Query box" msgstr "SQL 查詢框" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:295 msgid "Customize links shown in SQL Query boxes." msgstr "自訂顯示在 SQL 查詢框中的連結。" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:298 msgid "SQL queries settings." msgstr "SQL 語法設定。" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:299 msgid "Startup" msgstr "首頁" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:300 msgid "Customize startup page." msgstr "自訂首頁。" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:301 msgid "Database structure" msgstr "資料庫結構" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:303 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "請選擇要顯示在資料庫結構頁中的明細資料 (資料表清單)。" -#: libraries/config/messages.inc.php:302 libraries/structure.lib.php:3264 +#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264 msgid "Table structure" msgstr "資料表結構" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:306 msgid "Settings for the table structure (list of columns)." msgstr "設定資料表結構 (欄位清單)。" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:307 msgid "Tabs" msgstr "頁籤" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:308 msgid "Choose how you want tabs to work." msgstr "請選擇頁籤的顯示方式。" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:309 msgid "Display relational schema" msgstr "顯示關聯綱要(Schema)" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:311 #: libraries/plugins/schema/SchemaDia.class.php:77 #: libraries/plugins/schema/SchemaPdf.class.php:83 msgid "Paper size" msgstr "紙張大小" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:313 msgid "Text fields" msgstr "文字欄位" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:314 msgid "Customize text input fields." msgstr "自訂文字輸入框。" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:315 msgid "Texy! text" msgstr "Texy! 文字" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:316 msgid "Customize default options" msgstr "自定預設選項" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:317 msgid "Warnings" msgstr "警告訊息" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:319 msgid "Disable some of the warnings shown by phpMyAdmin." msgstr "停用部分 phpMyAdmin 發出的警告訊息。" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:321 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations." msgstr "" "允許在匯入和匯出時使用 [a@http://en.wikipedia.org/wiki/Gzip]gzip [/a] 壓縮。" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:324 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:325 msgid "Extra parameters for iconv" msgstr "iconv 的額外參數" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:327 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." @@ -6007,11 +6020,11 @@ msgstr "" "如果開啟此選項,在執行多條指令查詢的時候,即使有一條或多條指令發生錯誤," "phpMyAdmin 仍會繼續執行其他的指令。" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:330 msgid "Ignore multiple statement errors" msgstr "忽略多行指令的錯誤" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:332 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " @@ -6020,28 +6033,28 @@ msgstr "" "允許在程式偵測到執行時間快到上限時自動中斷匯入。若要匯入大型檔案這是很好的方" "法之一,不過使用這種方法會破壞指令中的交易(Transaction)動作。" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:336 msgid "Partial import: allow interrupt" msgstr "部分匯入: 允許中斷" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Disable foreign key checks" msgid "Temporarily disable foreign key checks while importing" msgstr "關閉外鍵(Foreign Key)檢查" -#: libraries/config/messages.inc.php:343 libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:345 libraries/config/messages.inc.php:355 #: libraries/plugins/import/ImportCsv.class.php:89 #: libraries/plugins/import/ImportLdi.class.php:73 msgid "Do not abort on INSERT error" msgstr "新增錯誤時不中斷程式" -#: libraries/config/messages.inc.php:344 libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357 #: libraries/plugins/import/AbstractImportCsv.class.php:55 msgid "Replace table data with file" msgstr "使用檔案取代資料表資料" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:349 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." @@ -6049,67 +6062,67 @@ msgstr "" "預設格式,請注意此列表內容會依據位置(資料庫或資料表)不同而改變,僅 SQL 部份不" "會有所影響。" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:352 msgid "Format of imported file" msgstr "匯入檔案的格式" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:356 #: libraries/plugins/import/ImportLdi.class.php:78 msgid "Use LOCAL keyword" msgstr "使用本地(LOCAL)關鍵字" -#: libraries/config/messages.inc.php:357 libraries/config/messages.inc.php:368 -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:359 libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:371 msgid "Column names in first row" msgstr "第一行資料為欄位名稱" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:360 #: libraries/plugins/import/ImportOds.class.php:83 msgid "Do not import empty rows" msgstr "不匯入空資料列" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:362 msgid "Import currencies ($5.00 to 5.00)" msgstr "匯入貨幣 ($5.00 將以 5.00 匯入)" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:364 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "以小數匯入百分比 (12.00% 將以 .12 匯入)" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:365 msgid "Number of queries to skip from start." msgstr "自文件開始略過的查詢數。" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:366 msgid "Partial import: skip queries" msgstr "部分匯入: 跳過查詢" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:369 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "請勿為數值為零的資料加上 AUTO_INCREMENT 屬性" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:372 msgid "Initial state for sliders" msgstr "Slider 起始狀態" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:373 msgid "How many rows can be inserted at one time." msgstr "一次可以新增的資料列數。" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:374 msgid "Number of inserted rows" msgstr "新增的列數" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:376 msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "瀏覽非數字欄位時所顯示的最大字元數。" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:378 msgid "Limit column characters" msgstr "限制欄位字元數" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:380 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -6118,21 +6131,21 @@ msgstr "" "如果設爲 TRUE,在登出時將會自動刪除所有伺服器的 Cookies。如果設爲 FALSE,在您" "登入多台伺服器的時候,很可能會使您忘記登出。" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:384 msgid "Delete all cookies on logout" msgstr "登出時刪除所有 cookies" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:386 msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "定義在 [kbd]cookie[/kbd] 認證方式中是否顯示上次登入的帳號。" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:389 msgid "Recall user name" msgstr "顯示上次登入的帳號" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:391 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -6142,68 +6155,68 @@ msgstr "" "設定瀏覽器可儲存登入用的 cookie 時間(秒)。預設爲 0,代表不保留 cookie 直至瀏" "覽器關閉即刪除。建議在不安全的環境下使用此預設值。" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:396 msgid "Login cookie store" msgstr "儲存登入 cookie" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:398 msgid "Define how long (in seconds) a login cookie is valid." msgstr "設定使用 Cookie 方式登入的有效期限 (秒)。" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:399 msgid "Login cookie validity" msgstr "登入 Cookie 有效期限" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:401 msgid "Double size of textarea for LONGTEXT columns." msgstr "放大一倍 LONGTEXT 欄位的輸入框。" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:402 msgid "Bigger textarea for LONGTEXT" msgstr "放大 LONGTEXT 欄位的輸入框" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:404 msgid "Maximum number of characters used when a SQL query is displayed." msgstr "顯示 SQL 指令時最多顯示的字數。" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:405 msgid "Maximum displayed SQL length" msgstr "顯示 SQL 指令的長度限制" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:423 -#: libraries/config/messages.inc.php:534 +#: libraries/config/messages.inc.php:406 libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:536 msgid "Users cannot set a higher value" msgstr "使用者不能設定更大的值" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:408 msgid "Maximum number of databases displayed in database list." msgstr "在資料庫清單顯示的資料庫項目數量上限。" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:409 msgid "Maximum databases" msgstr "資料庫數量上限" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:411 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "導覽樹每一頁可以顯示的第一層項目數量。" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:414 msgid "Maximum items on first level" msgstr "導覽樹第一層項目數量上限" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:416 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "導覽樹每一頁可以顯示的項目數量。" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:418 msgid "Maximum items in branch" msgstr "導覽樹分支的項目數量上限" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:420 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." @@ -6211,198 +6224,198 @@ msgstr "" "瀏覽查詢結果時一次最多顯示的列數。如果結果超過此列數,則會顯示「上一頁」和" "「下一頁」的連結。" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:424 msgid "Maximum number of rows to display" msgstr "可顯示的資料列數量上限" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:426 msgid "Maximum number of tables displayed in table list." msgstr "資料表清單中可顯示的資料表數量上限。" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:427 msgid "Maximum tables" msgstr "資料表數量上限" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:429 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)." msgstr "" "執行 Script 時可配置的記憶體大小,例 [kbd]32MB[/kbd] ([kbd]0[/kbd]爲不限制)。" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:432 msgid "Memory limit" msgstr "記憶體限制" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:433 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" msgstr "顯示隱藏的導覽樹項目。" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:437 msgid "Link with main panel by highlighting the current database or table." msgstr "透過高亮標記目前的資料庫或表格以和主控台聯結" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:439 msgid "Show logo in navigation panel." msgstr "在導覽面板中顯示圖示。" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:440 msgid "Display logo" msgstr "顯示 Logo" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:442 msgid "URL where logo in the navigation panel will point to." msgstr "導覽面板中圖示所連結的網址。" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:443 msgid "Logo link URL" msgstr "Logo 連結網址" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:445 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "使用主視窗 ([kbd]main[/kbd]) 或新視窗 ([kbd]new[/kbd]) 開啟目標連結。" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:448 msgid "Logo link target" msgstr "Logo 連結目標" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:450 msgid "Display server choice at the top of the navigation panel." msgstr "在導覽面板上方顯示伺服器清單。" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:451 msgid "Display servers selection" msgstr "顯示伺服器選擇" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:452 msgid "Target for quick access icon" msgstr "快速存取圖示要顯示的目標頁面" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:454 #, fuzzy #| msgid "Target for quick access icon" msgid "Target for second quick access icon" msgstr "快速存取圖示要顯示的目標頁面" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:457 msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." msgstr "設定顯示搜尋框的項目數量下限 (資料表、檢視表、預存程序和事件) 。" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:461 msgid "Minimum number of items to display the filter box" msgstr "設定顯示搜尋框的項目數量下限" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:463 msgid "Minimum number of databases to display the database filter box" msgstr "設定顯示搜尋框的資料庫數量下限" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:465 msgid "" "Group items in the navigation tree (determined by the separator defined " "below)." msgstr "將導覽樹內的項目分組 (依後面定義的分隔符號來分組)。" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:467 msgid "Group items in the tree" msgstr "將導覽樹內的項目分組" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:469 msgid "String that separates databases into different tree levels." msgstr "會依據此分隔符號將資料庫分爲不同階層的樹狀。" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:470 msgid "Database tree separator" msgstr "資料庫導覽樹的分隔符號" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:472 msgid "String that separates tables into different tree levels." msgstr "會依據此分隔符號將資料表分爲不同階層的樹狀。" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:473 msgid "Table tree separator" msgstr "資料表導覽樹的分隔符號" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:474 msgid "Maximum table tree depth" msgstr "資料表導覽樹深度限制" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:476 msgid "Highlight server under the mouse cursor." msgstr "當滑鼠指標移至伺服器上時加強標示。" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:477 msgid "Enable highlighting" msgstr "開啟加強標示" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:479 #, fuzzy #| msgid "Whether to disable the possibility of database expansion or not." msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "是否關閉資料庫展開功能。" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:481 #, fuzzy #| msgid "Table navigation bar" msgid "Enable navigation tree expansion" msgstr "資料表導覽欄" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:483 msgid "Maximum number of recently used tables; set 0 to disable." msgstr "最多顯示幾個最近使用的資料表;0 代表不顯示。" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:485 msgid "Maximum number of favorite tables; set 0 to disable." msgstr "顯示我的最愛資料表的數量上限;設為 0 則關閉此功能。" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:486 msgid "Recently used tables" msgstr "最近使用的資料表" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:488 msgid "These are Edit, Copy and Delete links." msgstr "連結包含了編輯、複製和刪除。" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:489 msgid "Where to show the table row links" msgstr "資料列的連結顯示位置" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:491 msgid "Use natural order for sorting table and database names." msgstr "使用自然排序顯示資料庫與資料表名稱。" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:492 msgid "Natural order" msgstr "自然排序" -#: libraries/config/messages.inc.php:491 libraries/config/messages.inc.php:522 -#: libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:493 libraries/config/messages.inc.php:524 +#: libraries/config/messages.inc.php:526 msgid "Use only icons, only text or both." msgstr "僅使用圖示、文字或都使用。" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:494 msgid "Table navigation bar" msgstr "資料表導覽欄" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:496 msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "使用 GZip 輸出快取以加快 HTTP 傳輸速度。" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:497 msgid "GZip output buffering" msgstr "GZip 輸出快取" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:499 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." @@ -6410,19 +6423,19 @@ msgstr "" "[kbd]SMART[/kbd] - 如: 對 TIME、DATE、DATETIME 和 TIMESTAMP 類型的欄位遞減排" "序,其他欄位遞增。" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:502 msgid "Default sorting order" msgstr "預設排序" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:504 msgid "Use persistent connections to MySQL databases." msgstr "使用持續連線的方式連線到 MySQL 資料庫。" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:505 msgid "Persistent connections" msgstr "持續連線" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:507 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -6431,47 +6444,47 @@ msgstr "" "關閉在缺少 phpMyAdmin 設定儲存空間所需資料表時在資料庫結構頁面中顯示的預設警" "告訊息。" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:512 msgid "Missing phpMyAdmin configuration storage tables" msgstr "缺少 phpMyAdmin 設定儲存空間資料表" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:514 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:516 +#: libraries/config/messages.inc.php:518 msgid "Server/library difference warning" msgstr "伺服器與函式庫不同版本的警告" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:520 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:521 +#: libraries/config/messages.inc.php:523 msgid "MySQL reserved word warning" msgstr "MySQL 保留字警告" -#: libraries/config/messages.inc.php:523 +#: libraries/config/messages.inc.php:525 msgid "How to display the menu tabs" msgstr "如何顯示選單標籤頁" -#: libraries/config/messages.inc.php:525 +#: libraries/config/messages.inc.php:527 msgid "How to display various action links" msgstr "如何顯示各種操作連結" -#: libraries/config/messages.inc.php:526 +#: libraries/config/messages.inc.php:528 msgid "Disallow BLOB and BINARY columns from editing." msgstr "不允許編輯 BLOB 和 BINARY 類型欄位。" -#: libraries/config/messages.inc.php:527 +#: libraries/config/messages.inc.php:529 msgid "Protect binary columns" msgstr "保護二進位欄位" -#: libraries/config/messages.inc.php:529 +#: libraries/config/messages.inc.php:531 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -6481,124 +6494,124 @@ msgstr "" "開啟此功能。若不使用,將會採用 Javascript 來保存查詢歷史記錄 (只會保留至瀏覽" "器關閉為止)。" -#: libraries/config/messages.inc.php:533 +#: libraries/config/messages.inc.php:535 msgid "Permanent query history" msgstr "保存查詢歷史記錄" -#: libraries/config/messages.inc.php:535 +#: libraries/config/messages.inc.php:537 msgid "How many queries are kept in history." msgstr "要保存的查詢歷史記錄的數量。" -#: libraries/config/messages.inc.php:536 +#: libraries/config/messages.inc.php:538 msgid "Query history length" msgstr "查詢歷史記錄數量" -#: libraries/config/messages.inc.php:538 +#: libraries/config/messages.inc.php:540 msgid "Select which functions will be used for character set conversion." msgstr "選擇進行字元編碼轉換時使用的函數。" -#: libraries/config/messages.inc.php:539 +#: libraries/config/messages.inc.php:541 msgid "Recoding engine" msgstr "編碼引擎" -#: libraries/config/messages.inc.php:541 +#: libraries/config/messages.inc.php:543 msgid "When browsing tables, the sorting of each table is remembered." msgstr "瀏覽資料表時會使用上次的資料表排序。" -#: libraries/config/messages.inc.php:542 +#: libraries/config/messages.inc.php:544 msgid "Remember table's sorting" msgstr "記住資料表的排序" -#: libraries/config/messages.inc.php:543 +#: libraries/config/messages.inc.php:545 msgid "Default sort order for tables with a primary key." msgstr "預設使用主鍵來排序表格" -#: libraries/config/messages.inc.php:544 +#: libraries/config/messages.inc.php:546 msgid "Primary key default sort order" msgstr "主鍵預設排序" -#: libraries/config/messages.inc.php:546 +#: libraries/config/messages.inc.php:548 msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "每 X 儲存格重複標題,要關閉此功能請設爲 [kbd]0[/kbd]。" -#: libraries/config/messages.inc.php:547 +#: libraries/config/messages.inc.php:549 msgid "Repeat headers" msgstr "重複顯示標題" -#: libraries/config/messages.inc.php:549 +#: libraries/config/messages.inc.php:551 msgid "Grid editing: trigger action" msgstr "表格編輯: 觸發動作" -#: libraries/config/messages.inc.php:550 +#: libraries/config/messages.inc.php:552 #, fuzzy #| msgid "Relational display column" msgid "Relational display" msgstr "關聯顯示欄位" -#: libraries/config/messages.inc.php:551 +#: libraries/config/messages.inc.php:553 #, fuzzy #| msgid "Servers display options." msgid "For display Options" msgstr "伺服器顯示選項。" -#: libraries/config/messages.inc.php:552 +#: libraries/config/messages.inc.php:554 msgid "Grid editing: save all edited cells at once" msgstr "表格編輯: 一次儲存所有已編輯資料" -#: libraries/config/messages.inc.php:553 +#: libraries/config/messages.inc.php:555 msgid "Directory where exports can be saved on server." msgstr "伺服器上用來儲存匯出檔案的資料夾。" -#: libraries/config/messages.inc.php:554 +#: libraries/config/messages.inc.php:556 msgid "Save directory" msgstr "儲存資料夾" -#: libraries/config/messages.inc.php:555 +#: libraries/config/messages.inc.php:557 msgid "Leave blank if not used." msgstr "不使用請留空。" -#: libraries/config/messages.inc.php:556 +#: libraries/config/messages.inc.php:558 msgid "Host authorization order" msgstr "主機認證模式" -#: libraries/config/messages.inc.php:557 +#: libraries/config/messages.inc.php:559 msgid "Leave blank for defaults." msgstr "使用預設值請留空。" -#: libraries/config/messages.inc.php:558 +#: libraries/config/messages.inc.php:560 msgid "Host authorization rules" msgstr "主機認證規則" -#: libraries/config/messages.inc.php:559 +#: libraries/config/messages.inc.php:561 msgid "Allow logins without a password" msgstr "允許空密碼登入" -#: libraries/config/messages.inc.php:560 +#: libraries/config/messages.inc.php:562 msgid "Allow root login" msgstr "允許 root 使用者登入" -#: libraries/config/messages.inc.php:561 +#: libraries/config/messages.inc.php:563 #, fuzzy #| msgid "Session value" msgid "Session timezone" msgstr "連線階段值" -#: libraries/config/messages.inc.php:562 +#: libraries/config/messages.inc.php:564 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" -#: libraries/config/messages.inc.php:564 +#: libraries/config/messages.inc.php:566 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth." msgstr "使用 HTTP 基本認證時顯示給使用者的提示資訊。" -#: libraries/config/messages.inc.php:565 +#: libraries/config/messages.inc.php:567 msgid "HTTP Realm" msgstr "HTTP 提示資訊" -#: libraries/config/messages.inc.php:567 +#: libraries/config/messages.inc.php:569 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -6607,19 +6620,19 @@ msgstr "" "[a@http://swekey.com]SweKey 硬件認證 [/a]的設定檔案路徑 (請勿置於您的檔案根資" "料夾,推薦使用: /etc/swekey.conf)。" -#: libraries/config/messages.inc.php:571 +#: libraries/config/messages.inc.php:573 msgid "SweKey config file" msgstr "SweKey 設定檔案" -#: libraries/config/messages.inc.php:572 +#: libraries/config/messages.inc.php:574 msgid "Authentication method to use." msgstr "要使用的認證方式。" -#: libraries/config/messages.inc.php:573 setup/frames/index.inc.php:163 +#: libraries/config/messages.inc.php:575 setup/frames/index.inc.php:163 msgid "Authentication type" msgstr "認證方式" -#: libraries/config/messages.inc.php:575 +#: libraries/config/messages.inc.php:577 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" @@ -6627,41 +6640,41 @@ msgstr "" "在不支援[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤[/a]功能時請留空,建議" "用: [kbd]pma__bookmark[/kbd]" -#: libraries/config/messages.inc.php:578 +#: libraries/config/messages.inc.php:580 msgid "Bookmark table" msgstr "書籤表" -#: libraries/config/messages.inc.php:580 +#: libraries/config/messages.inc.php:582 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:583 +#: libraries/config/messages.inc.php:585 msgid "Column information table" msgstr "列資訊表" -#: libraries/config/messages.inc.php:584 +#: libraries/config/messages.inc.php:586 msgid "Compress connection to MySQL server." msgstr "壓縮連線到 MySQL 伺服器。" -#: libraries/config/messages.inc.php:585 +#: libraries/config/messages.inc.php:587 msgid "Compress connection" msgstr "壓縮連線" -#: libraries/config/messages.inc.php:587 +#: libraries/config/messages.inc.php:589 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure." msgstr "怎樣連線到伺服器,如果不確定,請選擇 [kbd]tcp[/kbd]。" -#: libraries/config/messages.inc.php:588 +#: libraries/config/messages.inc.php:590 msgid "Connection type" msgstr "連接方式" -#: libraries/config/messages.inc.php:589 +#: libraries/config/messages.inc.php:591 msgid "Control user password" msgstr "控制使用者的密碼" -#: libraries/config/messages.inc.php:591 +#: libraries/config/messages.inc.php:593 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]." @@ -6669,36 +6682,36 @@ msgstr "" "只擁有部份權限的 MySQL 特殊使用者,詳情請參考 [a@http://wiki.phpmyadmin.net/" "pma/controluser]wiki[/a]。" -#: libraries/config/messages.inc.php:594 +#: libraries/config/messages.inc.php:596 msgid "Control user" msgstr "控制使用者" -#: libraries/config/messages.inc.php:596 +#: libraries/config/messages.inc.php:598 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "設定儲存空間的備用主機位置,若不修改備用主機位置則留空。" -#: libraries/config/messages.inc.php:599 +#: libraries/config/messages.inc.php:601 msgid "Control host" msgstr "管理伺服器" -#: libraries/config/messages.inc.php:601 +#: libraries/config/messages.inc.php:603 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:605 +#: libraries/config/messages.inc.php:607 msgid "Control port" msgstr "管理連接埠" -#: libraries/config/messages.inc.php:607 +#: libraries/config/messages.inc.php:609 msgid "Hide databases matching regular expression (PCRE)." msgstr "隱藏資料庫名稱符合此正規表示法(PCRE)的項目。" -#: libraries/config/messages.inc.php:608 +#: libraries/config/messages.inc.php:610 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]" @@ -6706,65 +6719,65 @@ msgstr "" "詳情請參考 [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA 問題追蹤系" "統[/a] 與 [a@http://bugs.mysql.com/19588]MySQL 問題回報[/a]" -#: libraries/config/messages.inc.php:609 +#: libraries/config/messages.inc.php:611 msgid "Disable use of INFORMATION_SCHEMA" msgstr "停用 INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:610 +#: libraries/config/messages.inc.php:612 msgid "Hide databases" msgstr "隱藏資料庫" -#: libraries/config/messages.inc.php:612 +#: libraries/config/messages.inc.php:614 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:615 +#: libraries/config/messages.inc.php:617 msgid "SQL query history table" msgstr "SQL 查詢紀錄表" -#: libraries/config/messages.inc.php:616 +#: libraries/config/messages.inc.php:618 msgid "Hostname where MySQL server is running." msgstr "正在執行 MySQL 伺服器的主機名稱。" -#: libraries/config/messages.inc.php:617 +#: libraries/config/messages.inc.php:619 msgid "Server hostname" msgstr "伺服器主機名稱" -#: libraries/config/messages.inc.php:618 +#: libraries/config/messages.inc.php:620 msgid "Logout URL" msgstr "登出網址" -#: libraries/config/messages.inc.php:620 +#: libraries/config/messages.inc.php:622 msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "儲存於資料庫的資料表偏好設定數量限制,超過數量會從最舊的項目自動移除。" -#: libraries/config/messages.inc.php:624 +#: libraries/config/messages.inc.php:626 msgid "Maximal number of table preferences to store" msgstr "資料表偏好設定的儲存最大值" -#: libraries/config/messages.inc.php:625 +#: libraries/config/messages.inc.php:627 #, fuzzy #| msgid "See slave status table" msgid "QBE saved searches table" msgstr "使用範例查詢(QBE)已儲存的搜尋資料表" -#: libraries/config/messages.inc.php:627 +#: libraries/config/messages.inc.php:629 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:630 +#: libraries/config/messages.inc.php:632 #, fuzzy #| msgid "Central columns" msgid "Central columns 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__table_coords[/" @@ -6774,15 +6787,15 @@ msgid "" "pma__central_columns[/kbd]." msgstr "不使用 PDF 大綱功能請留空,建議值: [kbd]pma__table_coords[/kbd]。" -#: libraries/config/messages.inc.php:635 +#: libraries/config/messages.inc.php:637 msgid "Try to connect without password." msgstr "嘗試用空密碼連線。" -#: libraries/config/messages.inc.php:636 +#: libraries/config/messages.inc.php:638 msgid "Connect without password" msgstr "用空密碼連線" -#: libraries/config/messages.inc.php:638 +#: libraries/config/messages.inc.php:640 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 " @@ -6791,28 +6804,28 @@ msgstr "" "您可以使用 MySQL 萬用字元 (% 和 _),如果想要表示萬用字元本身,請在前面加上反" "斜線。例: 用 [kbd]'my\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。" -#: libraries/config/messages.inc.php:642 +#: libraries/config/messages.inc.php:644 msgid "Show only listed databases" msgstr "僅顯示清單中的資料庫" -#: libraries/config/messages.inc.php:643 libraries/config/messages.inc.php:736 +#: libraries/config/messages.inc.php:645 libraries/config/messages.inc.php:738 msgid "Leave empty if not using config auth." msgstr "如果不使用 config 認證方式,請留空。" -#: libraries/config/messages.inc.php:644 +#: libraries/config/messages.inc.php:646 msgid "Password for config auth" msgstr "config 認證方式的密碼" -#: libraries/config/messages.inc.php:646 +#: libraries/config/messages.inc.php:648 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:648 +#: libraries/config/messages.inc.php:650 msgid "PDF schema: pages table" msgstr "PDF 大綱: 資料表頁" -#: libraries/config/messages.inc.php:650 +#: libraries/config/messages.inc.php:652 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 " @@ -6822,31 +6835,31 @@ msgstr "" "pma/pmadb]pmadb [/a] 取得更多資訊。留空則關閉此功能,建議為: [kbd]phpmyadmin" "[/kbd]。" -#: libraries/config/messages.inc.php:654 +#: libraries/config/messages.inc.php:656 #: libraries/display_create_database.lib.php:31 msgid "Database name" msgstr "資料庫名稱" -#: libraries/config/messages.inc.php:656 +#: libraries/config/messages.inc.php:658 msgid "Port on which MySQL server is listening, leave empty for default." msgstr "MySQL 伺服器監聽的連接埠,留空爲預設。" -#: libraries/config/messages.inc.php:657 +#: libraries/config/messages.inc.php:659 msgid "Server port" msgstr "伺服器端口" -#: libraries/config/messages.inc.php:659 +#: libraries/config/messages.inc.php:661 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:662 +#: libraries/config/messages.inc.php:664 msgid "Recently used table" 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, " @@ -6857,13 +6870,13 @@ msgid "" msgstr "" "如果不想要自動使用最近的資料表本欄位請留空,建議設定: [kbd]pma_config[/kbd]。" -#: libraries/config/messages.inc.php:667 +#: libraries/config/messages.inc.php:669 #, fuzzy #| msgid "Favorite tables" msgid "Favorites table" msgstr "我的最愛的資料表" -#: libraries/config/messages.inc.php:669 +#: libraries/config/messages.inc.php:671 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]." @@ -6871,11 +6884,11 @@ msgstr "" "不使用 [a@http://wiki.phpmyadmin.net/pma/relation]關聯連結[/a] 功能請留空,建" "議值: [kbd]pma__relation[/kbd]。" -#: libraries/config/messages.inc.php:673 +#: libraries/config/messages.inc.php:675 msgid "Relation table" msgstr "關係表" -#: libraries/config/messages.inc.php:675 +#: libraries/config/messages.inc.php:677 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example." @@ -6883,133 +6896,133 @@ msgstr "" "請參考 [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認證模式[/a] 中的" "範例。" -#: libraries/config/messages.inc.php:678 +#: libraries/config/messages.inc.php:680 msgid "Signon session name" msgstr "Signon 連線名稱" -#: libraries/config/messages.inc.php:679 +#: libraries/config/messages.inc.php:681 msgid "Signon URL" msgstr "登入網址" -#: libraries/config/messages.inc.php:681 +#: libraries/config/messages.inc.php:683 msgid "Socket on which MySQL server is listening, leave empty for default." msgstr "MySQL 伺服器監聽的連線埠,留空爲預設。" -#: libraries/config/messages.inc.php:682 +#: libraries/config/messages.inc.php:684 msgid "Server socket" msgstr "伺服器套接字 (socket)" -#: libraries/config/messages.inc.php:683 +#: libraries/config/messages.inc.php:685 msgid "Enable SSL for connection to MySQL server." msgstr "使用 SSL 連線到 MySQL 伺服器。" -#: libraries/config/messages.inc.php:684 +#: libraries/config/messages.inc.php:686 msgid "Use SSL" msgstr "使用 SSL" -#: libraries/config/messages.inc.php:686 +#: libraries/config/messages.inc.php:688 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:688 +#: libraries/config/messages.inc.php:690 #, fuzzy #| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" msgstr "PDF 大綱: 資料表同時" -#: libraries/config/messages.inc.php:690 +#: libraries/config/messages.inc.php:692 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:693 +#: libraries/config/messages.inc.php:695 msgid "Display columns table" msgstr "顯示欄位表" -#: libraries/config/messages.inc.php:695 +#: libraries/config/messages.inc.php:697 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:698 +#: libraries/config/messages.inc.php:700 msgid "UI preferences table" msgstr "「介面偏好」資料表" -#: libraries/config/messages.inc.php:700 +#: libraries/config/messages.inc.php:702 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:703 +#: libraries/config/messages.inc.php:705 msgid "Add DROP DATABASE" msgstr "加入 DROP DATABASE" -#: libraries/config/messages.inc.php:705 +#: libraries/config/messages.inc.php:707 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:708 +#: libraries/config/messages.inc.php:710 msgid "Add DROP TABLE" msgstr "加入 DROP TABLE" -#: libraries/config/messages.inc.php:710 +#: libraries/config/messages.inc.php:712 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:713 +#: libraries/config/messages.inc.php:715 msgid "Add DROP VIEW" msgstr "加入 DROP VIEW" -#: libraries/config/messages.inc.php:715 +#: libraries/config/messages.inc.php:717 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "給新版的自動建立指定一個指令清單。" -#: libraries/config/messages.inc.php:716 +#: libraries/config/messages.inc.php:718 msgid "Statements to track" msgstr "要追蹤的指令" -#: libraries/config/messages.inc.php:718 +#: libraries/config/messages.inc.php:720 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:721 +#: libraries/config/messages.inc.php:723 msgid "SQL query tracking table" msgstr "SQL 查詢追蹤表" -#: libraries/config/messages.inc.php:723 +#: libraries/config/messages.inc.php:725 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "設定追蹤系統是否自動爲資料表和檢視表建立版本。" -#: libraries/config/messages.inc.php:727 +#: libraries/config/messages.inc.php:729 msgid "Automatically create versions" msgstr "自動建立版本" -#: libraries/config/messages.inc.php:728 +#: libraries/config/messages.inc.php:730 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:729 +#: libraries/config/messages.inc.php:731 msgid "User preferences storage table" msgstr "使用者偏好表" -#: libraries/config/messages.inc.php:730 +#: libraries/config/messages.inc.php:732 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 " @@ -7018,11 +7031,11 @@ msgstr "" "設定選單功能必須同時啟用此資料表與使用者群組資料表,若有其中一個未填寫則會停" "用此功能,請參考:[kbd]pma__users[/kbd]。" -#: libraries/config/messages.inc.php:731 +#: libraries/config/messages.inc.php:733 msgid "Users table" msgstr "使用者資料表" -#: libraries/config/messages.inc.php:732 +#: libraries/config/messages.inc.php:734 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, " @@ -7031,11 +7044,11 @@ msgstr "" "設定選單功能必須同時啟用此資料表與使用者資料表,若有其中一個未填寫則會停用此" "功能,請參考:[kbd]pma__usergroups[/kbd]。" -#: libraries/config/messages.inc.php:733 +#: libraries/config/messages.inc.php:735 msgid "User groups table" msgstr "使用者群組資料表" -#: libraries/config/messages.inc.php:734 +#: libraries/config/messages.inc.php:736 msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7043,33 +7056,33 @@ msgstr "" "空白為停用隱藏和顯示導覽項目的功能,建議值:[kbd]pma__navigationhiding[/" "kbd]。" -#: libraries/config/messages.inc.php:735 +#: libraries/config/messages.inc.php:737 msgid "Hidden navigation items table" msgstr "隱藏導覽項目資料表" -#: libraries/config/messages.inc.php:737 +#: libraries/config/messages.inc.php:739 msgid "User for config auth" msgstr "config 認證方式的帳號" -#: libraries/config/messages.inc.php:738 +#: libraries/config/messages.inc.php:740 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "填寫易於使用者理解的伺服器描述,填空將顯示主機名稱。" -#: libraries/config/messages.inc.php:739 +#: libraries/config/messages.inc.php:741 msgid "Verbose name of this server" msgstr "伺服器名稱" -#: libraries/config/messages.inc.php:740 +#: libraries/config/messages.inc.php:742 msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "是否顯示 \"顯示全部資料列\" 的按鈕。" -#: libraries/config/messages.inc.php:741 +#: libraries/config/messages.inc.php:743 msgid "Allow to display all the rows" msgstr "允許顯示所有資料列" -#: libraries/config/messages.inc.php:742 +#: libraries/config/messages.inc.php:744 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7078,125 +7091,125 @@ msgstr "" "注意: 該選項不影響 [kbd]config[/kbd] 認證方式,因爲密碼是儲存在設定檔案中,該" "選項也不限制直接執行可實現相同功能的指令。" -#: libraries/config/messages.inc.php:743 +#: libraries/config/messages.inc.php:745 msgid "Show password change form" msgstr "顯示修改密碼" -#: libraries/config/messages.inc.php:744 +#: libraries/config/messages.inc.php:746 msgid "Show create database form" msgstr "顯示建立資料庫表單" -#: libraries/config/messages.inc.php:745 +#: libraries/config/messages.inc.php:747 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "顯示或隱藏所有資料表欄位建立的時間。" -#: libraries/config/messages.inc.php:746 +#: libraries/config/messages.inc.php:748 msgid "Show Creation timestamp" msgstr "顯示建立時間戳記" -#: libraries/config/messages.inc.php:747 +#: libraries/config/messages.inc.php:749 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "顯示或隱藏所有資料表欄位更新的時間。" -#: libraries/config/messages.inc.php:748 +#: libraries/config/messages.inc.php:750 msgid "Show Last update timestamp" msgstr "顯示最後更新的時間戳記" -#: libraries/config/messages.inc.php:749 +#: libraries/config/messages.inc.php:751 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "顯示或隱藏所有資料表欄位最後檢查的時間。" -#: libraries/config/messages.inc.php:750 +#: libraries/config/messages.inc.php:752 msgid "Show Last check timestamp" msgstr "顯示最後檢查時間戳記" -#: libraries/config/messages.inc.php:751 +#: libraries/config/messages.inc.php:753 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "定義在編輯/新增模式中是否顯示欄位型態。" -#: libraries/config/messages.inc.php:752 +#: libraries/config/messages.inc.php:754 msgid "Show field types" msgstr "顯示欄位類型" -#: libraries/config/messages.inc.php:753 +#: libraries/config/messages.inc.php:755 msgid "Display the function fields in edit/insert mode." msgstr "在編輯/新增模式中顯示函數欄位。" -#: libraries/config/messages.inc.php:754 +#: libraries/config/messages.inc.php:756 msgid "Show function fields" msgstr "顯示函數列" -#: libraries/config/messages.inc.php:755 +#: libraries/config/messages.inc.php:757 msgid "Whether to show hint or not." msgstr "是否顯示使用提示。" -#: libraries/config/messages.inc.php:756 +#: libraries/config/messages.inc.php:758 msgid "Show hint" msgstr "顯示提示" -#: libraries/config/messages.inc.php:757 +#: libraries/config/messages.inc.php:759 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:758 +#: libraries/config/messages.inc.php:760 msgid "Show phpinfo() link" msgstr "顯示 phpinfo() 連結" -#: libraries/config/messages.inc.php:759 +#: libraries/config/messages.inc.php:761 msgid "Show detailed MySQL server information" msgstr "顯示 MySQL 伺服器詳細資訊" -#: libraries/config/messages.inc.php:760 +#: libraries/config/messages.inc.php:762 msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "定義是否顯示 phpMyAdmin 產生的 SQL 指令。" -#: libraries/config/messages.inc.php:761 +#: libraries/config/messages.inc.php:763 msgid "Show SQL queries" msgstr "顯示 SQL 查詢" -#: libraries/config/messages.inc.php:762 +#: libraries/config/messages.inc.php:764 msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "是否在查詢過後繼續在畫面上顯示查詢框。" -#: libraries/config/messages.inc.php:763 libraries/sql_query_form.lib.php:328 +#: libraries/config/messages.inc.php:765 libraries/sql_query_form.lib.php:328 msgid "Retain query box" msgstr "繼續顯示查詢框" -#: libraries/config/messages.inc.php:764 +#: libraries/config/messages.inc.php:766 msgid "Allow to display database and table statistics (eg. space usage)." msgstr "允許顯示資料庫和資料表的統計資訊 (如: 空間使用)。" -#: libraries/config/messages.inc.php:765 +#: libraries/config/messages.inc.php:767 msgid "Show statistics" msgstr "顯示統計" -#: libraries/config/messages.inc.php:766 +#: libraries/config/messages.inc.php:768 msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "將已鎖定的資料表在資料庫中顯示爲使用中。" -#: libraries/config/messages.inc.php:767 +#: libraries/config/messages.inc.php:769 msgid "Skip locked tables" msgstr "跳過鎖定的資料表" -#: libraries/config/messages.inc.php:772 +#: libraries/config/messages.inc.php:774 msgid "A warning is displayed on the main page if Suhosin is detected." msgstr "關閉在檢測到 Suhosin 時首頁顯示的警告訊息。" -#: libraries/config/messages.inc.php:773 +#: libraries/config/messages.inc.php:775 msgid "Suhosin warning" msgstr "Suhosin 的警告" -#: libraries/config/messages.inc.php:774 +#: libraries/config/messages.inc.php:776 #, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the Structure page if " @@ -7207,13 +7220,13 @@ msgid "" "`LoginCookieValidity`." msgstr "關閉在資料表欄位是 MySQL 保留字時,結構頁面內顯示的預設警告訊息。" -#: libraries/config/messages.inc.php:776 +#: libraries/config/messages.inc.php:778 #, fuzzy #| msgid "Login cookie validity" msgid "Login cookie validity warning" msgstr "登入 Cookie 有效期限" -#: libraries/config/messages.inc.php:778 +#: libraries/config/messages.inc.php:780 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7221,11 +7234,11 @@ msgstr "" "編輯模式的文字框大小 (欄數),此值將用於 SQL 查詢文字框 (*2) 和查詢視窗 " "(*1.25)。" -#: libraries/config/messages.inc.php:779 +#: libraries/config/messages.inc.php:781 msgid "Textarea columns" msgstr "文字框寬度 (字數)" -#: libraries/config/messages.inc.php:780 +#: libraries/config/messages.inc.php:782 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)." @@ -7233,31 +7246,31 @@ msgstr "" "編輯模式的文字框大小 (列數),此值將用於 SQL 查詢文字框 (*2) 和查詢視窗 " "(*1.25)。" -#: libraries/config/messages.inc.php:781 +#: libraries/config/messages.inc.php:783 msgid "Textarea rows" msgstr "文字框列數" -#: libraries/config/messages.inc.php:782 +#: libraries/config/messages.inc.php:784 msgid "Title of browser window when a database is selected." msgstr "當選擇資料庫時瀏覽器視窗顯示的標題。" -#: libraries/config/messages.inc.php:784 +#: libraries/config/messages.inc.php:786 msgid "Title of browser window when nothing is selected." msgstr "當未選擇任何項目時瀏覽器視窗顯示的標題。" -#: libraries/config/messages.inc.php:785 +#: libraries/config/messages.inc.php:787 msgid "Default title" msgstr "預設標題" -#: libraries/config/messages.inc.php:786 +#: libraries/config/messages.inc.php:788 msgid "Title of browser window when a server is selected." msgstr "當選擇伺服器時瀏覽器視窗顯示的標題。" -#: libraries/config/messages.inc.php:788 +#: libraries/config/messages.inc.php:790 msgid "Title of browser window when a table is selected." msgstr "當選擇資料表時瀏覽器視窗顯示的標題。" -#: libraries/config/messages.inc.php:790 +#: libraries/config/messages.inc.php:792 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-" @@ -7268,52 +7281,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:791 +#: libraries/config/messages.inc.php:793 msgid "List of trusted proxies for IP allow/deny" msgstr "可信認的代理伺服器 IP 允許/拒絕清單" -#: libraries/config/messages.inc.php:792 +#: libraries/config/messages.inc.php:794 msgid "Directory on server where you can upload files for import." msgstr "伺服器上用來存放匯入檔案的資料夾。" -#: libraries/config/messages.inc.php:793 +#: libraries/config/messages.inc.php:795 msgid "Upload directory" msgstr "上傳資料夾" -#: libraries/config/messages.inc.php:794 +#: libraries/config/messages.inc.php:796 msgid "Allow for searching inside the entire database." msgstr "允許搜尋整個資料庫。" -#: libraries/config/messages.inc.php:795 +#: libraries/config/messages.inc.php:797 msgid "Use database search" msgstr "使用資料庫搜尋" -#: libraries/config/messages.inc.php:796 +#: libraries/config/messages.inc.php:798 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "停用時,使用者不能設定下列選項,右側的複選框被忽略。" -#: libraries/config/messages.inc.php:797 +#: libraries/config/messages.inc.php:799 msgid "Enable the Developer tab in settings" msgstr "啓用設定選項中的開發人員頁籤" -#: libraries/config/messages.inc.php:798 setup/frames/index.inc.php:313 +#: libraries/config/messages.inc.php:800 setup/frames/index.inc.php:313 msgid "Check for latest version" msgstr "檢查是否有更新版本" -#: libraries/config/messages.inc.php:799 +#: libraries/config/messages.inc.php:801 msgid "Enables check for latest version on main phpMyAdmin page." msgstr "啟動在 phpMyAdmin 首頁中更新版本的檢查。" -#: libraries/config/messages.inc.php:800 setup/lib/index.lib.php:117 +#: libraries/config/messages.inc.php:802 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:801 +#: libraries/config/messages.inc.php:803 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 " @@ -7324,11 +7337,11 @@ msgstr "" "用。若您的伺服器所在位置無法直接存取網際網路的話,將會需要此設定。格式為:" "\"主機名稱:埠號\"。" -#: libraries/config/messages.inc.php:802 +#: libraries/config/messages.inc.php:804 msgid "Proxy url" msgstr "代理伺服器網址" -#: libraries/config/messages.inc.php:803 +#: libraries/config/messages.inc.php:805 msgid "" "The username for authenticating with the proxy. By default, no " "authentication is performed. If a username is supplied, Basic Authentication " @@ -7337,19 +7350,19 @@ msgstr "" "使用代理伺服器進行身份驗證的使用者名稱,預設無身份驗證。如果提供了使用者名" "稱,則會執行基本驗證。目前不支援其他類型的身份驗證。" -#: libraries/config/messages.inc.php:804 +#: libraries/config/messages.inc.php:806 msgid "Proxy username" msgstr "代理伺服器使用者名稱" -#: libraries/config/messages.inc.php:805 +#: libraries/config/messages.inc.php:807 msgid "The password for authenticating with the proxy." msgstr "使用代理伺服器進行身份驗證的密碼。" -#: libraries/config/messages.inc.php:806 +#: libraries/config/messages.inc.php:808 msgid "Proxy password" msgstr "代理伺服器密碼" -#: libraries/config/messages.inc.php:808 +#: libraries/config/messages.inc.php:810 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations." @@ -7357,52 +7370,52 @@ msgstr "" "允許在匯入和匯出時使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP " "[/a] 壓縮。" -#: libraries/config/messages.inc.php:809 +#: libraries/config/messages.inc.php:811 msgid "ZIP" msgstr "ZIP" -#: libraries/config/messages.inc.php:810 +#: libraries/config/messages.inc.php:812 msgid "Enter your public key for your domain reCaptcha service." msgstr "請為您的網域驗證碼 (reCaptcha) 服務輸入公開金鑰。" -#: libraries/config/messages.inc.php:811 +#: libraries/config/messages.inc.php:813 msgid "Public key for reCaptcha" msgstr "驗證碼的公開金鑰" -#: libraries/config/messages.inc.php:812 +#: libraries/config/messages.inc.php:814 msgid "Enter your private key for your domain reCaptcha service." msgstr "請為您的網域驗證碼 (reCaptcha) 服務輸入私密金鑰。" -#: libraries/config/messages.inc.php:813 +#: libraries/config/messages.inc.php:815 msgid "Private key for reCaptcha" msgstr "驗證碼的私密金鑰" -#: libraries/config/messages.inc.php:815 +#: libraries/config/messages.inc.php:817 msgid "Choose the default action when sending error reports." msgstr "請選擇傳送錯誤報告的預設動作。" -#: libraries/config/messages.inc.php:816 +#: libraries/config/messages.inc.php:818 msgid "Send error reports" msgstr "傳送錯誤報告" -#: libraries/config/messages.inc.php:818 +#: libraries/config/messages.inc.php:820 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:819 +#: libraries/config/messages.inc.php:821 #, fuzzy msgid "Enter executes queries in console" msgstr "SQL 查詢" -#: libraries/config/messages.inc.php:822 +#: libraries/config/messages.inc.php:824 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "開啟零設定模式可讓您自動安裝 phpMyAdmin 設定空間資料表。" -#: libraries/config/messages.inc.php:825 +#: libraries/config/messages.inc.php:827 msgid "Enable Zero Configuration mode" msgstr "開啟零設定模式" @@ -7422,44 +7435,44 @@ msgstr "HTTP 認證" msgid "Signon authentication" msgstr "Signon 認證" -#: libraries/config/setup.forms.php:261 -#: libraries/config/user_preferences.forms.php:162 +#: libraries/config/setup.forms.php:262 +#: libraries/config/user_preferences.forms.php:163 msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" -#: libraries/config/setup.forms.php:270 libraries/config/setup.forms.php:368 -#: libraries/config/user_preferences.forms.php:170 -#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/setup.forms.php:271 libraries/config/setup.forms.php:369 +#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/user_preferences.forms.php:268 msgid "OpenDocument Spreadsheet" msgstr "OpenOffice 表格" -#: libraries/config/setup.forms.php:277 -#: libraries/config/user_preferences.forms.php:177 +#: libraries/config/setup.forms.php:278 +#: libraries/config/user_preferences.forms.php:178 msgid "Quick" msgstr "快速" -#: libraries/config/setup.forms.php:281 -#: libraries/config/user_preferences.forms.php:181 +#: libraries/config/setup.forms.php:282 +#: libraries/config/user_preferences.forms.php:182 msgid "Custom" msgstr "自訂" -#: libraries/config/setup.forms.php:304 -#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/setup.forms.php:305 +#: libraries/config/user_preferences.forms.php:204 msgid "Database export options" msgstr "資料庫匯出選項" -#: libraries/config/setup.forms.php:340 -#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/setup.forms.php:341 +#: libraries/config/user_preferences.forms.php:240 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" -#: libraries/config/setup.forms.php:363 -#: libraries/config/user_preferences.forms.php:262 +#: libraries/config/setup.forms.php:364 +#: libraries/config/user_preferences.forms.php:263 msgid "Microsoft Word 2000" msgstr "微軟 Word 2000" -#: libraries/config/setup.forms.php:372 -#: libraries/config/user_preferences.forms.php:271 +#: libraries/config/setup.forms.php:373 +#: libraries/config/user_preferences.forms.php:272 msgid "OpenDocument Text" msgstr "OpenOffice 檔案" @@ -7671,20 +7684,20 @@ msgstr "不能在無緩衝的結果集中計算筆數" #: libraries/display_change_password.lib.php:60 #: libraries/replication_gui.lib.php:866 -#: libraries/server_privileges.lib.php:1670 +#: libraries/server_privileges.lib.php:1676 msgid "No Password" msgstr "無密碼" #: libraries/display_change_password.lib.php:68 #: libraries/plugins/auth/AuthenticationCookie.class.php:199 #: libraries/replication_gui.lib.php:412 libraries/replication_gui.lib.php:853 -#: libraries/server_privileges.lib.php:1646 +#: libraries/server_privileges.lib.php:1652 msgid "Password:" msgstr "密碼:" #: libraries/display_change_password.lib.php:74 #: libraries/replication_gui.lib.php:877 -#: libraries/server_privileges.lib.php:1687 +#: libraries/server_privileges.lib.php:1693 msgid "Re-type:" msgstr "重新輸入:" @@ -7819,8 +7832,8 @@ msgstr ",@TABLE@ 會替換為資料表名稱" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "此數值會使用 %1$sstrftime%2$s 來解析,所以您可以使用時間格式的字串。除此之" "外,以下資料格式也會被轉換: %3$s。其他的文字則會保持原樣。請參考 %4$s常見問" @@ -8345,8 +8358,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "有關 PBXT 的更相關資訊請可以 %sPrimeBase XT 首頁%s 中找到。" #: libraries/engines/pbxt.lib.php:138 @@ -8807,7 +8820,7 @@ msgstr "登出" msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 說明文件" -#: libraries/navigation/NavigationHeader.class.php:196 +#: libraries/navigation/NavigationHeader.class.php:192 msgid "Reload navigation panel" msgstr "重新讀取導覽區" @@ -9454,8 +9467,8 @@ msgstr "歡迎使用 %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:124 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "您可能還沒有建立設定檔案。您可以使用 %1$s 設定指令 %2$s 來建立。" #: libraries/plugins/auth/AuthenticationConfig.class.php:144 @@ -9682,7 +9695,7 @@ msgstr "首行儲存欄位名稱:" #: libraries/plugins/export/ExportSql.class.php:670 #: libraries/plugins/export/ExportXml.class.php:182 #: libraries/replication_gui.lib.php:423 libraries/replication_gui.lib.php:694 -#: libraries/server_privileges.lib.php:1521 libraries/sql.lib.php:289 +#: libraries/server_privileges.lib.php:1527 libraries/sql.lib.php:289 msgid "Host:" msgstr "主機:" @@ -10683,22 +10696,22 @@ msgstr "" "請將下列設定新增到 [mysqld] 設定區塊中:" #: libraries/replication_gui.lib.php:400 libraries/replication_gui.lib.php:787 -#: libraries/server_privileges.lib.php:1455 +#: libraries/server_privileges.lib.php:1461 msgid "User name:" msgstr "帳號:" #: libraries/replication_gui.lib.php:406 libraries/replication_gui.lib.php:791 #: libraries/replication_gui.lib.php:807 -#: libraries/server_privileges.lib.php:1460 -#: libraries/server_privileges.lib.php:1492 +#: libraries/server_privileges.lib.php:1466 +#: libraries/server_privileges.lib.php:1498 msgid "User name" msgstr "帳號" #: libraries/replication_gui.lib.php:417 libraries/replication_gui.lib.php:857 #: libraries/replication_gui.lib.php:873 -#: libraries/server_privileges.lib.php:1650 -#: libraries/server_privileges.lib.php:1678 -#: libraries/server_privileges.lib.php:3203 +#: libraries/server_privileges.lib.php:1656 +#: libraries/server_privileges.lib.php:1684 +#: libraries/server_privileges.lib.php:3227 msgid "Password" msgstr "密碼" @@ -10726,10 +10739,10 @@ msgstr "伺服器 ID" #: libraries/replication_gui.lib.php:609 libraries/replication_gui.lib.php:698 #: libraries/replication_gui.lib.php:842 -#: libraries/server_privileges.lib.php:1526 -#: libraries/server_privileges.lib.php:1628 -#: libraries/server_privileges.lib.php:2244 -#: libraries/server_privileges.lib.php:3202 +#: libraries/server_privileges.lib.php:1532 +#: libraries/server_privileges.lib.php:1634 +#: libraries/server_privileges.lib.php:2268 +#: libraries/server_privileges.lib.php:3226 #: libraries/server_status_processes.lib.php:77 msgid "Host" msgstr "主機" @@ -10741,45 +10754,45 @@ msgid "" msgstr "只有執行時加入 --report-host=host_name 參數的次要伺服器會列在此清單。" #: libraries/replication_gui.lib.php:744 -#: libraries/server_privileges.lib.php:1584 +#: libraries/server_privileges.lib.php:1590 msgid "Any host" msgstr "任意主機" #: libraries/replication_gui.lib.php:749 -#: libraries/server_privileges.lib.php:1592 +#: libraries/server_privileges.lib.php:1598 msgid "Local" msgstr "本機" #: libraries/replication_gui.lib.php:756 -#: libraries/server_privileges.lib.php:1601 +#: libraries/server_privileges.lib.php:1607 msgid "This Host" msgstr "此主機" #: libraries/replication_gui.lib.php:798 -#: libraries/server_privileges.lib.php:1476 +#: libraries/server_privileges.lib.php:1482 msgid "Any user" msgstr "任意使用者" #: libraries/replication_gui.lib.php:803 libraries/replication_gui.lib.php:836 #: libraries/replication_gui.lib.php:869 -#: libraries/server_privileges.lib.php:1620 +#: libraries/server_privileges.lib.php:1626 msgid "Use text field:" msgstr "使用文字欄位:" #: libraries/replication_gui.lib.php:830 -#: libraries/server_privileges.lib.php:1611 +#: libraries/server_privileges.lib.php:1617 msgid "Use Host Table" msgstr "使用主機表" #: libraries/replication_gui.lib.php:846 -#: libraries/server_privileges.lib.php:1638 +#: libraries/server_privileges.lib.php:1644 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "使用主機表時,此處的資料會被主機資料表中的資料所替換。" #: libraries/replication_gui.lib.php:881 -#: libraries/server_privileges.lib.php:1691 +#: libraries/server_privileges.lib.php:1697 msgid "Re-type" msgstr "重新輸入" @@ -11503,7 +11516,7 @@ msgstr "無" #: libraries/server_privileges.lib.php:527 #: libraries/server_privileges.lib.php:554 -#: libraries/server_privileges.lib.php:3210 +#: libraries/server_privileges.lib.php:3234 #: libraries/server_user_groups.lib.php:78 msgid "User group" msgstr "使用者群組" @@ -11570,14 +11583,14 @@ msgstr "使用者可同時連線的數量限制。" #: libraries/server_privileges.lib.php:997 #: libraries/server_privileges.lib.php:1190 -#: libraries/server_privileges.lib.php:3022 -#: libraries/server_privileges.lib.php:3034 +#: libraries/server_privileges.lib.php:3046 +#: libraries/server_privileges.lib.php:3058 msgid "Table-specific privileges" msgstr "指定資料表權限" #: libraries/server_privileges.lib.php:999 #: libraries/server_privileges.lib.php:1200 -#: libraries/server_privileges.lib.php:3206 +#: libraries/server_privileges.lib.php:3230 msgid "Note: MySQL privilege names are expressed in English." msgstr "注意: MySQL 權限名稱會以英文表示。" @@ -11586,7 +11599,7 @@ msgid "Administration" msgstr "管理" #: libraries/server_privileges.lib.php:1184 -#: libraries/server_privileges.lib.php:3204 +#: libraries/server_privileges.lib.php:3228 msgid "Global privileges" msgstr "全域權限" @@ -11595,7 +11608,7 @@ msgid "Global" msgstr "全域" #: libraries/server_privileges.lib.php:1187 -#: libraries/server_privileges.lib.php:3021 +#: libraries/server_privileges.lib.php:3045 msgid "Database-specific privileges" msgstr "指定資料庫權限" @@ -11612,256 +11625,256 @@ msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允許新增使用者和權限,但不允許重新載入權限表。" -#: libraries/server_privileges.lib.php:1452 -#: libraries/server_privileges.lib.php:2730 +#: libraries/server_privileges.lib.php:1458 +#: libraries/server_privileges.lib.php:2754 msgid "Login Information" msgstr "登入資訊" -#: libraries/server_privileges.lib.php:1485 -#: libraries/server_privileges.lib.php:1673 -#: libraries/server_privileges.lib.php:3154 +#: libraries/server_privileges.lib.php:1491 +#: libraries/server_privileges.lib.php:1679 +#: libraries/server_privileges.lib.php:3178 msgid "Use text field" msgstr "使用文字方塊" -#: libraries/server_privileges.lib.php:1512 +#: libraries/server_privileges.lib.php:1518 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "已存在與此帳號相同的使用者名稱,但可能使用不同的主機名稱。" -#: libraries/server_privileges.lib.php:1663 +#: libraries/server_privileges.lib.php:1669 msgid "Do not change the password" msgstr "不修改密碼" -#: libraries/server_privileges.lib.php:1808 +#: libraries/server_privileges.lib.php:1832 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密碼已修改。" -#: libraries/server_privileges.lib.php:1849 +#: libraries/server_privileges.lib.php:1873 #, php-format msgid "You have revoked the privileges for %s." msgstr "您已移除 %s 的權限。" -#: libraries/server_privileges.lib.php:1939 -#: libraries/server_privileges.lib.php:4062 +#: libraries/server_privileges.lib.php:1963 +#: libraries/server_privileges.lib.php:4086 msgid "Add user" msgstr "新增使用者" -#: libraries/server_privileges.lib.php:1948 +#: libraries/server_privileges.lib.php:1972 msgid "Database for user" msgstr "使用者資料庫" -#: libraries/server_privileges.lib.php:1952 +#: libraries/server_privileges.lib.php:1976 msgid "Create database with same name and grant all privileges." msgstr "建立與使用者同名的資料庫並授予所有權限。" -#: libraries/server_privileges.lib.php:1958 +#: libraries/server_privileges.lib.php:1982 msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "給以 帳號_ 開頭的資料庫 (username\\_%) 授予所有權限。" -#: libraries/server_privileges.lib.php:1967 +#: libraries/server_privileges.lib.php:1991 #, php-format msgid "Grant all privileges on database \"%s\"." msgstr "授予資料庫“%s”的所有權限。" -#: libraries/server_privileges.lib.php:2068 -#: libraries/server_privileges.lib.php:2132 +#: libraries/server_privileges.lib.php:2092 +#: libraries/server_privileges.lib.php:2156 #, php-format msgid "Users having access to \"%s\"" msgstr "可以存取 \"%s\" 的使用者" -#: libraries/server_privileges.lib.php:2101 +#: libraries/server_privileges.lib.php:2125 msgid "User has been added." msgstr "已新增使用者。" -#: libraries/server_privileges.lib.php:2243 -#: libraries/server_privileges.lib.php:3201 -#: libraries/server_privileges.lib.php:4013 -#: libraries/server_privileges.lib.php:4084 +#: libraries/server_privileges.lib.php:2267 +#: libraries/server_privileges.lib.php:3225 +#: libraries/server_privileges.lib.php:4037 +#: libraries/server_privileges.lib.php:4108 #: libraries/server_status_processes.lib.php:73 #: libraries/server_user_groups.lib.php:39 msgid "User" msgstr "使用者" -#: libraries/server_privileges.lib.php:2247 -#: libraries/server_privileges.lib.php:3031 -#: libraries/server_privileges.lib.php:3212 +#: libraries/server_privileges.lib.php:2271 +#: libraries/server_privileges.lib.php:3055 +#: libraries/server_privileges.lib.php:3236 msgid "Grant" msgstr "允許授權" -#: libraries/server_privileges.lib.php:2262 +#: libraries/server_privileges.lib.php:2286 msgid "Not enough privilege to view users." msgstr "權限不足檢視使用者。" -#: libraries/server_privileges.lib.php:2282 -#: libraries/server_privileges.lib.php:3659 +#: libraries/server_privileges.lib.php:2306 +#: libraries/server_privileges.lib.php:3683 msgid "No user found." msgstr "未找到使用者。" -#: libraries/server_privileges.lib.php:2313 -#: libraries/server_privileges.lib.php:2596 -#: libraries/server_privileges.lib.php:3288 +#: libraries/server_privileges.lib.php:2337 +#: libraries/server_privileges.lib.php:2620 +#: libraries/server_privileges.lib.php:3312 msgid "Any" msgstr "任意" -#: libraries/server_privileges.lib.php:2364 +#: libraries/server_privileges.lib.php:2388 msgid "global" msgstr "全域" -#: libraries/server_privileges.lib.php:2367 +#: libraries/server_privileges.lib.php:2391 msgid "database-specific" msgstr "指定資料庫" -#: libraries/server_privileges.lib.php:2369 +#: libraries/server_privileges.lib.php:2393 msgid "wildcard" msgstr "萬用字元" -#: libraries/server_privileges.lib.php:2375 +#: libraries/server_privileges.lib.php:2399 msgid "table-specific" msgstr "指定資料表" -#: libraries/server_privileges.lib.php:2502 +#: libraries/server_privileges.lib.php:2526 msgid "Edit Privileges" msgstr "編輯權限" -#: libraries/server_privileges.lib.php:2505 +#: libraries/server_privileges.lib.php:2529 msgid "Revoke" msgstr "移除" -#: libraries/server_privileges.lib.php:2529 +#: libraries/server_privileges.lib.php:2553 msgid "Edit user group" msgstr "編輯使用者群組" -#: libraries/server_privileges.lib.php:2709 +#: libraries/server_privileges.lib.php:2733 msgid "… keep the old one." msgstr "… 保留舊使用者。" -#: libraries/server_privileges.lib.php:2710 +#: libraries/server_privileges.lib.php:2734 msgid "… delete the old one from the user tables." msgstr "… 從使用者資料表中刪除舊使用者。" -#: libraries/server_privileges.lib.php:2712 +#: libraries/server_privileges.lib.php:2736 msgid "" "… revoke all active privileges from the old one and delete it afterwards." msgstr "… 移除舊使用者的所有權限,然後刪除舊使用者。" -#: libraries/server_privileges.lib.php:2716 +#: libraries/server_privileges.lib.php:2740 msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "… 從使用者資料表中刪除舊使用者,然後重新載入權限。" -#: libraries/server_privileges.lib.php:2731 +#: libraries/server_privileges.lib.php:2755 msgid "Change Login Information / Copy User" msgstr "修改登入資訊/複製使用者" -#: libraries/server_privileges.lib.php:2737 +#: libraries/server_privileges.lib.php:2761 msgid "Create a new user with the same privileges and …" msgstr "建立具有相同權限的新使用者然後 …" -#: libraries/server_privileges.lib.php:3035 +#: libraries/server_privileges.lib.php:3059 msgid "Column-specific privileges" msgstr "指定欄位權限" -#: libraries/server_privileges.lib.php:3090 +#: libraries/server_privileges.lib.php:3114 msgid "Add privileges on the following database(s):" msgstr "在下列資料庫新增權限:" -#: libraries/server_privileges.lib.php:3114 +#: libraries/server_privileges.lib.php:3138 msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "要使用萬用字元 _ 和 % 本身,應使用用 \\ 轉義。" -#: libraries/server_privileges.lib.php:3132 +#: libraries/server_privileges.lib.php:3156 msgid "Add privileges on the following table:" msgstr "在下列資料表新增權限:" -#: libraries/server_privileges.lib.php:3369 +#: libraries/server_privileges.lib.php:3393 msgid "Remove selected users" msgstr "刪除選中的使用者" -#: libraries/server_privileges.lib.php:3375 +#: libraries/server_privileges.lib.php:3399 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "移除使用者所有權限,然後刪除使用者。" -#: libraries/server_privileges.lib.php:3383 -#: libraries/server_privileges.lib.php:3389 -#: libraries/server_privileges.lib.php:3392 +#: libraries/server_privileges.lib.php:3407 +#: libraries/server_privileges.lib.php:3413 +#: libraries/server_privileges.lib.php:3416 msgid "Drop the databases that have the same names as the users." msgstr "刪除與使用者同名的資料庫。" -#: libraries/server_privileges.lib.php:3533 +#: libraries/server_privileges.lib.php:3557 msgid "No users selected for deleting!" msgstr "沒有選擇要刪除的使用者!" -#: libraries/server_privileges.lib.php:3536 +#: libraries/server_privileges.lib.php:3560 msgid "Reloading the privileges" msgstr "重新載入權限" -#: libraries/server_privileges.lib.php:3555 +#: libraries/server_privileges.lib.php:3579 msgid "The selected users have been deleted successfully." msgstr "已成功刪除選中的使用者。" -#: libraries/server_privileges.lib.php:3629 +#: libraries/server_privileges.lib.php:3653 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的權限。" -#: libraries/server_privileges.lib.php:3698 +#: libraries/server_privileges.lib.php:3722 #, php-format msgid "Deleting %s" msgstr "正在刪除 %s" -#: libraries/server_privileges.lib.php:3727 +#: libraries/server_privileges.lib.php:3751 msgid "The privileges were reloaded successfully." msgstr "已成功重新載入權限。" -#: libraries/server_privileges.lib.php:3813 +#: libraries/server_privileges.lib.php:3837 #, php-format msgid "The user %s already exists!" msgstr "使用者 %s 己存在!" -#: libraries/server_privileges.lib.php:4004 +#: libraries/server_privileges.lib.php:4028 #, php-format msgid "Privileges for %s" msgstr "權限 %s" -#: libraries/server_privileges.lib.php:4054 +#: libraries/server_privileges.lib.php:4078 msgctxt "Create new user" msgid "New" msgstr "新增" -#: libraries/server_privileges.lib.php:4083 +#: libraries/server_privileges.lib.php:4107 msgid "Edit Privileges:" msgstr "編輯權限:" -#: libraries/server_privileges.lib.php:4143 +#: libraries/server_privileges.lib.php:4167 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "注意:您正嘗試編輯您目前登入使用者的權限。" -#: libraries/server_privileges.lib.php:4163 libraries/server_users.lib.php:25 +#: libraries/server_privileges.lib.php:4187 libraries/server_users.lib.php:25 msgid "Users overview" msgstr "檢視使用者" -#: libraries/server_privileges.lib.php:4248 +#: libraries/server_privileges.lib.php:4272 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意: phpMyAdmin 直接由 MySQL 權限表取得使用者權限。若有使用者中途手動更改權" "限,則表中顯示的內容可能與伺服器實際使用的使用者權限有異。在這種情況下,您應" "在繼續前 %s重新載入權限%s。" -#: libraries/server_privileges.lib.php:4299 +#: libraries/server_privileges.lib.php:4323 msgid "The selected user was not found in the privilege table." msgstr "在權限表內找不到選中的使用者。" -#: libraries/server_privileges.lib.php:4531 +#: libraries/server_privileges.lib.php:4555 msgid "You have added a new user." msgstr "您已新增了一個新使用者。" @@ -13562,21 +13575,21 @@ msgstr "索引快取大小" msgid "Key block size:" msgstr "" -#: libraries/tbl_indexes.lib.php:333 +#: libraries/tbl_indexes.lib.php:334 msgid "Index type:" msgstr "索引類型:" -#: libraries/tbl_indexes.lib.php:345 +#: libraries/tbl_indexes.lib.php:346 #, fuzzy #| msgid "User:" msgid "Parser:" msgstr "使用者:" -#: libraries/tbl_indexes.lib.php:357 +#: libraries/tbl_indexes.lib.php:358 msgid "Comment:" msgstr "說明:" -#: libraries/tbl_indexes.lib.php:392 libraries/tbl_indexes.lib.php:429 +#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430 msgid "Drag to reorder" msgstr "使用滑鼠拖曳來重新排序" @@ -13909,8 +13922,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"透過修改 config.inc.php 設定檔您可以調整更多的設定項目,如: 使用 %s安裝程式%" -"s 。" +"透過修改 config.inc.php 設定檔您可以調整更多的設定項目,如: 使用 %s安裝程" +"式%s 。" #: prefs_manage.php:321 msgid "Save to browser's storage" @@ -14567,8 +14580,8 @@ msgstr "" #: libraries/advisory_rules.txt:179 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s" +"%%. It should be above 80%%" msgstr "目前閒置查詢快取記憶體為全部查詢快取的大小的 %s%%,這個值應高於 80%%" #: libraries/advisory_rules.txt:181 @@ -14704,8 +14717,8 @@ msgstr "" #: libraries/advisory_rules.txt:216 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." +"%s%% of all sorts cause temporary tables, this value should be lower than " +"10%%." msgstr "有 %s%% 的排序會產生暫存表,這個值應低於 10%%。" #: libraries/advisory_rules.txt:218 @@ -16715,8 +16728,8 @@ msgstr "concurrent_insert 目前設定為 0" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" +#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" #~ msgid "Add a New User" #~ msgstr "新增新使用者"